diff --git a/test/runtests.jl b/test/runtests.jl index 10718b9..5263018 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -3,4 +3,9 @@ using Test using Documenter DocMeta.setdocmeta!(Cowsay, :DocTestSetup, :(using Cowsay); recursive=true) -doctest(Cowsay) + +@testset verbose = true "cowsay" begin + @testset "Doctests" begin + doctest(Cowsay) + end +end