Allow docstrings to calculate coverage (hopefully)

Signed-off-by: Thomas A. Christensen II <25492070+MillironX@users.noreply.github.com>
This commit is contained in:
Thomas A. Christensen II 2021-11-23 15:30:06 -06:00
parent c12422278a
commit e468783238
Signed by: millironx
GPG key ID: 139C07724802BC5D
2 changed files with 5 additions and 4 deletions

View file

@ -8,6 +8,7 @@ julia = "1"
[extras]
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
[targets]
test = ["Test"]
test = ["Test", "Documenter"]

View file

@ -1,6 +1,6 @@
using Cowsay
using Test
using Documenter
@testset "cowsay.jl" begin
# Write your tests here.
end
DocMeta.setdocmeta!(Cowsay, :DocTestSetup, :(using Cowsay); recursive=true)
doctest(Cowsay)