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
205 B
Plaintext
14 lines
205 B
Plaintext
-- main.mcl --
|
|
$x1 = "bad1"
|
|
$x2 = "also bad"
|
|
include defs.foo
|
|
|
|
import "defs.mcl" # out of order for fun
|
|
-- defs.mcl --
|
|
class foo {
|
|
test $x1 {} # capture the var
|
|
}
|
|
$x1 = "t1"
|
|
-- OUTPUT --
|
|
Vertex: test[t1]
|