From b068326b2e8d4c8ccaa1149d8867c6d88a4768db Mon Sep 17 00:00:00 2001 From: "Thomas A. Christensen II" <25492070+MillironX@users.noreply.github.com> Date: Tue, 1 Feb 2022 15:42:15 -0600 Subject: [PATCH] Reorganize tests into testsets --- test/runtests.jl | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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