renamed root test classes to avoid clash, 489 tests
This commit is contained in:
parent
ab17200ffc
commit
3a56ae1a8d
@ -1,6 +1,6 @@
|
|||||||
require_relative "../parser_helper"
|
require_relative "../parser_helper"
|
||||||
|
|
||||||
class TestBasic < MiniTest::Test
|
class RootTestBasic < MiniTest::Test
|
||||||
# include the magic (setup and parse -> test method translation), see there
|
# include the magic (setup and parse -> test method translation), see there
|
||||||
include ParserHelper
|
include ParserHelper
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
require_relative "../parser_helper"
|
require_relative "../parser_helper"
|
||||||
|
|
||||||
class TestCallSite < MiniTest::Test
|
class RootTestCallSite < MiniTest::Test
|
||||||
# include the magic (setup and parse -> test method translation), see there
|
# include the magic (setup and parse -> test method translation), see there
|
||||||
include ParserHelper
|
include ParserHelper
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
require_relative "../parser_helper"
|
require_relative "../parser_helper"
|
||||||
|
|
||||||
class TestClassDef < MiniTest::Test
|
class RootTestClassDef < MiniTest::Test
|
||||||
# include the magic (setup and parse -> test method translation), see there
|
# include the magic (setup and parse -> test method translation), see there
|
||||||
include ParserHelper
|
include ParserHelper
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
require_relative "../parser_helper"
|
require_relative "../parser_helper"
|
||||||
|
|
||||||
class TestCompound < MiniTest::Test
|
class RootTestCompound < MiniTest::Test
|
||||||
# include the magic (setup and parse -> test method translation), see there
|
# include the magic (setup and parse -> test method translation), see there
|
||||||
include ParserHelper
|
include ParserHelper
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
require_relative "../parser_helper"
|
require_relative "../parser_helper"
|
||||||
|
|
||||||
class TestConditional < MiniTest::Test
|
class RootTestConditional < MiniTest::Test
|
||||||
# include the magic (setup and parse -> test method translation), see there
|
# include the magic (setup and parse -> test method translation), see there
|
||||||
include ParserHelper
|
include ParserHelper
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
require_relative "../parser_helper"
|
require_relative "../parser_helper"
|
||||||
|
|
||||||
class TestFunctionDefinition < MiniTest::Test
|
class RootTestFunctionDefinition < MiniTest::Test
|
||||||
# include the magic (setup and parse -> test method translation), see there
|
# include the magic (setup and parse -> test method translation), see there
|
||||||
include ParserHelper
|
include ParserHelper
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
require_relative "../parser_helper"
|
require_relative "../parser_helper"
|
||||||
|
|
||||||
class TestModuleDef < MiniTest::Test
|
class RootTestModuleDef < MiniTest::Test
|
||||||
# include the magic (setup and parse -> test method translation), see there
|
# include the magic (setup and parse -> test method translation), see there
|
||||||
include ParserHelper
|
include ParserHelper
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
require_relative "../parser_helper"
|
require_relative "../parser_helper"
|
||||||
|
|
||||||
class TestExpressions < MiniTest::Test
|
class RootTestExpressions < MiniTest::Test
|
||||||
# include the magic (setup and parse -> test method translation), see there
|
# include the magic (setup and parse -> test method translation), see there
|
||||||
include ParserHelper
|
include ParserHelper
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
require_relative "../parser_helper"
|
require_relative "../parser_helper"
|
||||||
|
|
||||||
class TestReturn < MiniTest::Test
|
class RootTestReturn < MiniTest::Test
|
||||||
# include the magic (setup and parse -> test method translation), see there
|
# include the magic (setup and parse -> test method translation), see there
|
||||||
include ParserHelper
|
include ParserHelper
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
require_relative "../parser_helper"
|
require_relative "../parser_helper"
|
||||||
|
|
||||||
class TestRoot < MiniTest::Test
|
class RootTestRoot < MiniTest::Test
|
||||||
# include the magic (setup and parse -> test method translation), see there
|
# include the magic (setup and parse -> test method translation), see there
|
||||||
include ParserHelper
|
include ParserHelper
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
require_relative "../parser_helper"
|
require_relative "../parser_helper"
|
||||||
|
|
||||||
class TestWhile < MiniTest::Test
|
class RootTestWhile < MiniTest::Test
|
||||||
# include the magic (setup and parse -> test method translation), see there
|
# include the magic (setup and parse -> test method translation), see there
|
||||||
include ParserHelper
|
include ParserHelper
|
||||||
|
|
||||||
|
@ -1,2 +1,2 @@
|
|||||||
require_relative "unit/test_all"
|
require_relative "unit/test_all"
|
||||||
require_relative "roots/test_root"
|
require_relative "roots/test_all"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user