We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 33e264e commit 29ecce6Copy full SHA for 29ecce6
1 file changed
test/serializer_test.exs
@@ -7,14 +7,14 @@ defmodule Graph.SerializerTests do
7
assert {:ok,
8
"""
9
strict digraph {
10
- "start"
11
- "{:complex, :label}"
12
- "c"
13
- "finish"
14
- "start" -> "{:complex, :label}" [weight=3]
15
- "{:complex, :label}" -> "c" [label=5; weight=1]
16
- "{:complex, :label}" -> "finish" [label=1.0; weight=3]
17
- "c" -> "finish" [weight=1]
+ 97[label="start"]
+ 98[label="{:complex, :label}"]
+ 99[label="c"]
+ 100[label="finish"]
+ 97 -> 98 [weight=3]
+ 98 -> 99 [label=5; weight=1]
+ 98 -> 100 [label=1.0; weight=3]
+ 99 -> 100 [weight=1]
18
}
19
"""} = Graph.to_dot(g)
20
end
0 commit comments