Allow docstrings to calculate coverage (hopefully)
Signed-off-by: Thomas A. Christensen II <25492070+MillironX@users.noreply.github.com>
This commit is contained in:
parent
c12422278a
commit
e468783238
2 changed files with 5 additions and 4 deletions
|
@ -8,6 +8,7 @@ julia = "1"
|
||||||
|
|
||||||
[extras]
|
[extras]
|
||||||
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
|
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
|
||||||
|
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
|
||||||
|
|
||||||
[targets]
|
[targets]
|
||||||
test = ["Test"]
|
test = ["Test", "Documenter"]
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
using Cowsay
|
using Cowsay
|
||||||
using Test
|
using Test
|
||||||
|
using Documenter
|
||||||
|
|
||||||
@testset "cowsay.jl" begin
|
DocMeta.setdocmeta!(Cowsay, :DocTestSetup, :(using Cowsay); recursive=true)
|
||||||
# Write your tests here.
|
doctest(Cowsay)
|
||||||
end
|
|
||||||
|
|
Loading…
Reference in a new issue