fixes parfait/type tests place and guard file accordingly
test were in old directory and guard file broken accordingly
This commit is contained in:
parent
dda2ddd9fb
commit
e387bdb5f2
@ -16,10 +16,8 @@ guard :minitest do # with Minitest::Unit
|
|||||||
#Arm instructions
|
#Arm instructions
|
||||||
watch(%r{^lib/arm/instructions/(.+)_instruction.rb}) { |m| "test/arm/test_#{m[1]}.rb" }
|
watch(%r{^lib/arm/instructions/(.+)_instruction.rb}) { |m| "test/arm/test_#{m[1]}.rb" }
|
||||||
|
|
||||||
#parfait basics
|
#parfait type tests have a whole directory
|
||||||
watch(%r{^lib/typed/parfait/(.+).rb}) { |m| "test/typed/parfait/test_#{m[1]}.rb" }
|
watch(%r{^lib/parfait/type.rb}) { Dir["test/parfait/type/test_*.rb"] }
|
||||||
watch(%r{^lib/typed/parfait/type.rb}) { |m| "test/typed/type/test_all.rb" }
|
|
||||||
watch(%r{^lib/typed/parfait/typed_method.rb}) { |m| "test/typed/type/test_method_api.rb" }
|
|
||||||
|
|
||||||
# Vool to_mom compile process + # Ruby to vool compile process
|
# Vool to_mom compile process + # Ruby to vool compile process
|
||||||
watch(%r{^lib/vool/statements/(.+)_statement.rb}) { |m| ["test/vool/to_mom/test_#{m[1]}.rb" ,"test/vool/statements/test_#{m[1]}.rb"] }
|
watch(%r{^lib/vool/statements/(.+)_statement.rb}) { |m| ["test/vool/to_mom/test_#{m[1]}.rb" ,"test/vool/statements/test_#{m[1]}.rb"] }
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
require_relative "../helper"
|
require_relative "../../helper"
|
||||||
|
|
||||||
class BasicType < MiniTest::Test
|
class BasicType < MiniTest::Test
|
||||||
|
|
@ -1,4 +1,4 @@
|
|||||||
require_relative "../helper"
|
require_relative "../../helper"
|
||||||
|
|
||||||
class TypeHash < MiniTest::Test
|
class TypeHash < MiniTest::Test
|
||||||
|
|
@ -1,4 +1,4 @@
|
|||||||
require_relative "../helper"
|
require_relative "../../helper"
|
||||||
|
|
||||||
class TypeMessages < MiniTest::Test
|
class TypeMessages < MiniTest::Test
|
||||||
|
|
@ -1,4 +1,4 @@
|
|||||||
require_relative "../helper"
|
require_relative "../../helper"
|
||||||
|
|
||||||
class TestMethodApi < MiniTest::Test
|
class TestMethodApi < MiniTest::Test
|
||||||
|
|
@ -1,4 +1,4 @@
|
|||||||
require_relative "../helper"
|
require_relative "../../helper"
|
||||||
|
|
||||||
class TypeApi < MiniTest::Test
|
class TypeApi < MiniTest::Test
|
||||||
|
|
Loading…
Reference in New Issue
Block a user