From 98a907e8e6f4a11d6d1e34e48506601fedb0ed2b Mon Sep 17 00:00:00 2001 From: Torsten Ruger Date: Tue, 29 Apr 2014 17:02:38 +0300 Subject: [PATCH] with the new framework there are 16 more tests, just doing it thorough --- test/parser/test_all.rb | 7 +++++++ test/parser/test_conditional.rb | 2 +- test/parser/test_expressions.rb | 2 +- test/test_all.rb | 5 ++--- 4 files changed, 11 insertions(+), 5 deletions(-) create mode 100644 test/parser/test_all.rb diff --git a/test/parser/test_all.rb b/test/parser/test_all.rb new file mode 100644 index 00000000..e2882bf0 --- /dev/null +++ b/test/parser/test_all.rb @@ -0,0 +1,7 @@ + +require_relative "test_basic.rb" +require_relative "test_arguments.rb" +require_relative "test_expressions.rb" +require_relative "test_function_call.rb" +require_relative "test_conditional.rb" +require_relative "test_function_definition.rb" diff --git a/test/parser/test_conditional.rb b/test/parser/test_conditional.rb index a9226f81..3699f2a1 100644 --- a/test/parser/test_conditional.rb +++ b/test/parser/test_conditional.rb @@ -1,6 +1,6 @@ require_relative "helper" -class TestBasic < MiniTest::Test +class TestConditional < MiniTest::Test # include the magic (setup and parse -> test method translation), see there include ParserHelper diff --git a/test/parser/test_expressions.rb b/test/parser/test_expressions.rb index 21121683..b5a088d3 100644 --- a/test/parser/test_expressions.rb +++ b/test/parser/test_expressions.rb @@ -1,6 +1,6 @@ require_relative "helper" -class TestBasic < MiniTest::Test +class TestExpressions < 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 368bbf21..be6f73a0 100644 --- a/test/test_all.rb +++ b/test/test_all.rb @@ -1,5 +1,4 @@ require_relative "test_crystal" -require_relative "test_ast" -require_relative "test_parser" require_relative "test_small_program" -require_relative "test_transform" +#require_relative "test_runner" +require_relative "parser/test_all"