change test framework to use files for in and out (s-exp)

This commit is contained in:
Torsten Ruger
2015-09-18 21:55:02 +03:00
parent 396a843a5e
commit 22e3c59674
80 changed files with 946 additions and 13 deletions

View File

@ -0,0 +1,3 @@
FooBar
-- -- --
s(:list, [s(:module, "FooBar")])

View File

@ -0,0 +1,3 @@
foo
-- -- --
s(:list, [s(:name, "foo")])

View File

@ -0,0 +1,3 @@
foo_bar
-- -- --
s(:list, [s(:name, "foo_bar")])

View File

@ -0,0 +1,3 @@
_bar
-- -- --
s(:list, [s(:name, "_bar")])

View File

@ -0,0 +1,3 @@
42
-- -- --
s(:list, [s(:int, 42)])

View File

@ -0,0 +1,3 @@
"hello"
-- -- --
s(:list, [s(:string, "hello")])

View File

@ -0,0 +1,3 @@
"hello \nyou"
-- -- --
s(:list, [s(:string, "hello \\nyou")])