From 3a56ae1a8d96845bbb80f760626c8203d57cb1c3 Mon Sep 17 00:00:00 2001 From: Torsten Ruger Date: Thu, 26 Jun 2014 13:43:50 +0300 Subject: [PATCH] renamed root test classes to avoid clash, 489 tests --- test/roots/test_basic.rb | 2 +- test/roots/test_call_site.rb | 2 +- test/roots/test_class.rb | 2 +- test/roots/test_compound.rb | 2 +- test/roots/test_conditional.rb | 2 +- test/roots/test_function_definition.rb | 2 +- test/roots/test_module.rb | 2 +- test/roots/test_operators.rb | 2 +- test/roots/test_return.rb | 2 +- test/roots/test_root.rb | 2 +- test/roots/test_while.rb | 2 +- test/test_all.rb | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/test/roots/test_basic.rb b/test/roots/test_basic.rb index cbf5866..ac45489 100644 --- a/test/roots/test_basic.rb +++ b/test/roots/test_basic.rb @@ -1,6 +1,6 @@ require_relative "../parser_helper" -class TestBasic < MiniTest::Test +class RootTestBasic < MiniTest::Test # include the magic (setup and parse -> test method translation), see there include ParserHelper diff --git a/test/roots/test_call_site.rb b/test/roots/test_call_site.rb index ee792a1..d791ae4 100644 --- a/test/roots/test_call_site.rb +++ b/test/roots/test_call_site.rb @@ -1,6 +1,6 @@ require_relative "../parser_helper" -class TestCallSite < MiniTest::Test +class RootTestCallSite < MiniTest::Test # include the magic (setup and parse -> test method translation), see there include ParserHelper diff --git a/test/roots/test_class.rb b/test/roots/test_class.rb index dbab51d..ef34328 100644 --- a/test/roots/test_class.rb +++ b/test/roots/test_class.rb @@ -1,6 +1,6 @@ require_relative "../parser_helper" -class TestClassDef < MiniTest::Test +class RootTestClassDef < MiniTest::Test # include the magic (setup and parse -> test method translation), see there include ParserHelper diff --git a/test/roots/test_compound.rb b/test/roots/test_compound.rb index 1244a19..767fd89 100644 --- a/test/roots/test_compound.rb +++ b/test/roots/test_compound.rb @@ -1,6 +1,6 @@ require_relative "../parser_helper" -class TestCompound < MiniTest::Test +class RootTestCompound < MiniTest::Test # include the magic (setup and parse -> test method translation), see there include ParserHelper diff --git a/test/roots/test_conditional.rb b/test/roots/test_conditional.rb index 690ef87..497c473 100644 --- a/test/roots/test_conditional.rb +++ b/test/roots/test_conditional.rb @@ -1,6 +1,6 @@ require_relative "../parser_helper" -class TestConditional < MiniTest::Test +class RootTestConditional < MiniTest::Test # include the magic (setup and parse -> test method translation), see there include ParserHelper diff --git a/test/roots/test_function_definition.rb b/test/roots/test_function_definition.rb index 20087c7..0be0287 100644 --- a/test/roots/test_function_definition.rb +++ b/test/roots/test_function_definition.rb @@ -1,6 +1,6 @@ require_relative "../parser_helper" -class TestFunctionDefinition < MiniTest::Test +class RootTestFunctionDefinition < MiniTest::Test # include the magic (setup and parse -> test method translation), see there include ParserHelper diff --git a/test/roots/test_module.rb b/test/roots/test_module.rb index 89d065a..2881b6d 100644 --- a/test/roots/test_module.rb +++ b/test/roots/test_module.rb @@ -1,6 +1,6 @@ require_relative "../parser_helper" -class TestModuleDef < MiniTest::Test +class RootTestModuleDef < MiniTest::Test # include the magic (setup and parse -> test method translation), see there include ParserHelper diff --git a/test/roots/test_operators.rb b/test/roots/test_operators.rb index 492495d..d081add 100644 --- a/test/roots/test_operators.rb +++ b/test/roots/test_operators.rb @@ -1,6 +1,6 @@ require_relative "../parser_helper" -class TestExpressions < MiniTest::Test +class RootTestExpressions < MiniTest::Test # include the magic (setup and parse -> test method translation), see there include ParserHelper diff --git a/test/roots/test_return.rb b/test/roots/test_return.rb index 7cfed11..199c665 100644 --- a/test/roots/test_return.rb +++ b/test/roots/test_return.rb @@ -1,6 +1,6 @@ require_relative "../parser_helper" -class TestReturn < MiniTest::Test +class RootTestReturn < MiniTest::Test # include the magic (setup and parse -> test method translation), see there include ParserHelper diff --git a/test/roots/test_root.rb b/test/roots/test_root.rb index 38b8d6e..b4537b6 100644 --- a/test/roots/test_root.rb +++ b/test/roots/test_root.rb @@ -1,6 +1,6 @@ require_relative "../parser_helper" -class TestRoot < MiniTest::Test +class RootTestRoot < MiniTest::Test # include the magic (setup and parse -> test method translation), see there include ParserHelper diff --git a/test/roots/test_while.rb b/test/roots/test_while.rb index 4637147..3bd0e1c 100644 --- a/test/roots/test_while.rb +++ b/test/roots/test_while.rb @@ -1,6 +1,6 @@ require_relative "../parser_helper" -class TestWhile < MiniTest::Test +class RootTestWhile < MiniTest::Test # include the magic (setup and parse -> test method translation), see there include ParserHelper diff --git a/test/test_all.rb b/test/test_all.rb index ec3277d..b295712 100644 --- a/test/test_all.rb +++ b/test/test_all.rb @@ -1,2 +1,2 @@ require_relative "unit/test_all" -require_relative "roots/test_root" +require_relative "roots/test_all"