fix tests

This commit is contained in:
Torsten Ruger 2014-05-28 14:27:18 +03:00
parent 07ef170db0
commit c01c19209a
3 changed files with 7 additions and 5 deletions

View File

@ -1,6 +1,8 @@
require_relative "test_hello"
require_relative "test_foo" require_relative "test_foo"
require_relative "test_putint" require_relative "test_functions"
require_relative "test_while" require_relative "test_hello"
require_relative "test_if" require_relative "test_if"
require_relative "test_putint"
#require_relative "test_recursive_fibo"
require_relative "test_while"

View File

@ -3,7 +3,7 @@ require_relative 'helper'
class TestFunctions < MiniTest::Test class TestFunctions < MiniTest::Test
include Fragments include Fragments
def test_hello def test_functions
@string_input = <<HERE @string_input = <<HERE
def minus(a,b) def minus(a,b)
a - b a - b

View File

@ -1,6 +1,6 @@
require_relative 'helper' require_relative 'helper'
class TestWhile < MiniTest::Test class TestWhileFragment < MiniTest::Test
include Fragments include Fragments
def test_while def test_while