Skip to content

Commit 85122be

Browse files
committed
two test options (sigh)
1 parent 8d6cb35 commit 85122be

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

test/iifInterfaceTests.jl

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ end
1919
@show v1
2020
end
2121

22+
println()
23+
println()
24+
2225
#test before anything changes
2326
@testset "Producing Dot Files" begin
2427
global dfg
@@ -29,8 +32,9 @@ end
2932
todotc = cmp(todotstr, "graph G {\na [color=red, shape=ellipse];\nb [color=red, shape=ellipse];\nabf1 [color=blue, shape=box];\na -- abf1\nb -- abf1\n}\n") |> abs
3033
todotd = cmp(todotstr, "graph G {\na [color=red, shape=ellipse];\nb [color=red, shape=ellipse];\nabf1 [color=blue, shape=box];\nb -- abf1\na -- abf1\n}\n") |> abs
3134
todote = cmp(todotstr, "graph G {\na [color=red, shape=ellipse];\nb [color=red, shape=ellipse];\nabf1 [color=blue, shape=box, fontsize=8, fixedsize=false, height=0.1, width=0.1];\na -- abf1\nb -- abf1\n}\n") |> abs
32-
@show todota, todotb, todotc, todotd, todote
33-
@test (todota < 1 || todotb < 1 || todotc < 1 || todotd < 1 || todote < 1)
35+
todotf = cmp(todotstr, "graph G {\na [color=red, shape=ellipse];\nb [color=red, shape=ellipse];\nabf1 [color=blue, shape=box, fontsize=8, fixedsize=false, height=0.1, width=0.1];\nb -- abf1\na -- abf1\n}\n") |> abs
36+
@show todota, todotb, todotc, todotd, todote, todotf
37+
@test (todota < 1 || todotb < 1 || todotc < 1 || todotd < 1 || todote < 1 || todotf < 1)
3438
@test toDotFile(dfg, "something.dot") === nothing
3539
Base.rm("something.dot")
3640
end

0 commit comments

Comments
 (0)