These test both graph shape consistency and single value outputs. Eventually we want to make the graph shape tests more precise, and also verify specific outputs how it used to be. For now, this is okay. Co-authored-by: Samuel Gélineau <gelisam@gmail.com>
14 lines
228 B
Plaintext
14 lines
228 B
Plaintext
-- main.mcl --
|
|
test "t1" {
|
|
int64ptr => 42,
|
|
}
|
|
test "t2" {
|
|
int64ptr => 13,
|
|
}
|
|
|
|
Test["t1"].hello -> Test["t2"].stringptr # send/recv
|
|
-- OUTPUT --
|
|
Edge: test[t1] -> test[t2] # test[t1] -> test[t2]
|
|
Vertex: test[t1]
|
|
Vertex: test[t2]
|