fixes parfait/type tests place and guard file accordingly

test were in old directory and guard file broken accordingly
This commit is contained in:
Torsten Ruger
2017-04-23 18:43:32 +03:00
parent dda2ddd9fb
commit e387bdb5f2
6 changed files with 8 additions and 10 deletions

View File

@ -1,4 +1,4 @@
require_relative "../helper"
require_relative "../../helper"
class BasicType < MiniTest::Test

View File

@ -1,4 +1,4 @@
require_relative "../helper"
require_relative "../../helper"
class TypeHash < MiniTest::Test
@ -28,7 +28,7 @@ class TypeHash < MiniTest::Test
def test_to_hash
hash = @first.to_hash
assert_equal hash[:type] , :Type
assert_equal 2 , hash.length
assert_equal 2 , hash.length
end
def test_add_is_different
type = @first.add_instance_variable :random , :Integer

View File

@ -1,4 +1,4 @@
require_relative "../helper"
require_relative "../../helper"
class TypeMessages < MiniTest::Test

View File

@ -1,4 +1,4 @@
require_relative "../helper"
require_relative "../../helper"
class TestMethodApi < MiniTest::Test

View File

@ -1,4 +1,4 @@
require_relative "../helper"
require_relative "../../helper"
class TypeApi < MiniTest::Test