fix conflicting test class names
why the fail didn't show locall, even with the same seed, i do not know
This commit is contained in:
parent
7c4faf7b2a
commit
1913848910
@ -1,7 +1,7 @@
|
|||||||
require_relative "helper"
|
require_relative "helper"
|
||||||
|
|
||||||
module Vool
|
module Vool
|
||||||
class TestArray < MiniTest::Test
|
class TestArrayX < MiniTest::Test
|
||||||
include RubyTests
|
include RubyTests
|
||||||
|
|
||||||
def test_empty
|
def test_empty
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
require_relative "helper"
|
require_relative "helper"
|
||||||
|
|
||||||
module Vool
|
module Vool
|
||||||
class TestBasicValues < MiniTest::Test
|
class TestBasicValuesX < MiniTest::Test
|
||||||
include RubyTests
|
include RubyTests
|
||||||
|
|
||||||
def test_self
|
def test_self
|
||||||
@ -47,7 +47,7 @@ module Vool
|
|||||||
assert_equal 1 , lst.statements.first.value
|
assert_equal 1 , lst.statements.first.value
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
class TestBasicTypes < MiniTest::Test
|
class TestBasicTypesX < MiniTest::Test
|
||||||
include RubyTests
|
include RubyTests
|
||||||
|
|
||||||
def setup
|
def setup
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
require_relative "helper"
|
require_relative "helper"
|
||||||
|
|
||||||
module Vool
|
module Vool
|
||||||
class TestBlockStatement < MiniTest::Test
|
class TestBlockStatementX < MiniTest::Test
|
||||||
include RubyTests
|
include RubyTests
|
||||||
|
|
||||||
def setup()
|
def setup()
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
require_relative "helper"
|
require_relative "helper"
|
||||||
|
|
||||||
module Vool
|
module Vool
|
||||||
class TestEmptyClassStatement < MiniTest::Test
|
class TestEmptyClassStatementX < MiniTest::Test
|
||||||
include RubyTests
|
include RubyTests
|
||||||
|
|
||||||
def setup
|
def setup
|
||||||
@ -26,7 +26,7 @@ module Vool
|
|||||||
end
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
class TestBasicClassStatement < MiniTest::Test
|
class TestBasicClassStatementX < MiniTest::Test
|
||||||
include ScopeHelper
|
include ScopeHelper
|
||||||
include RubyTests
|
include RubyTests
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
require_relative "helper"
|
require_relative "helper"
|
||||||
|
|
||||||
module Vool
|
module Vool
|
||||||
class HashArray < MiniTest::Test
|
class HashArrayX < MiniTest::Test
|
||||||
include RubyTests
|
include RubyTests
|
||||||
|
|
||||||
def test_empty
|
def test_empty
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
require_relative 'helper'
|
require_relative 'helper'
|
||||||
|
|
||||||
module Vool
|
module Vool
|
||||||
class TestIfStatement < MiniTest::Test
|
class TestIfStatementX < MiniTest::Test
|
||||||
include RubyTests
|
include RubyTests
|
||||||
|
|
||||||
def basic_if
|
def basic_if
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
require_relative "helper"
|
require_relative "helper"
|
||||||
|
|
||||||
module Vool
|
module Vool
|
||||||
class TestIvarAssignment < MiniTest::Test
|
class TestIvarAssignmentX < MiniTest::Test
|
||||||
include RubyTests
|
include RubyTests
|
||||||
|
|
||||||
def test_local
|
def test_local
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
require_relative "helper"
|
require_relative "helper"
|
||||||
|
|
||||||
module Vool
|
module Vool
|
||||||
class TestLocalAssignment < MiniTest::Test
|
class TestLocalAssignmentX < MiniTest::Test
|
||||||
include RubyTests
|
include RubyTests
|
||||||
|
|
||||||
def test_local
|
def test_local
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
require_relative "helper"
|
require_relative "helper"
|
||||||
|
|
||||||
module Vool
|
module Vool
|
||||||
class TestLogical < MiniTest::Test
|
class TestLogicalX < MiniTest::Test
|
||||||
include RubyTests
|
include RubyTests
|
||||||
|
|
||||||
def simple
|
def simple
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
require_relative "helper"
|
require_relative "helper"
|
||||||
|
|
||||||
module Vool
|
module Vool
|
||||||
class TestMethodStatement < MiniTest::Test
|
class TestMethodStatementX < MiniTest::Test
|
||||||
include RubyTests
|
include RubyTests
|
||||||
|
|
||||||
def basic_setup()
|
def basic_setup()
|
||||||
|
@ -18,7 +18,7 @@ module Vool
|
|||||||
assert_equal 5 , @lst.value.arguments.first.value
|
assert_equal 5 , @lst.value.arguments.first.value
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
class TestLocalOpAssign < MiniTest::Test
|
class TestLocalOpAssignX < MiniTest::Test
|
||||||
include OpAss
|
include OpAss
|
||||||
include RubyTests
|
include RubyTests
|
||||||
def setup
|
def setup
|
||||||
@ -28,7 +28,7 @@ module Vool
|
|||||||
assert_equal LocalAssignment , @lst.class
|
assert_equal LocalAssignment , @lst.class
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
class TestIvarOpAssign < MiniTest::Test
|
class TestIvarOpAssignX < MiniTest::Test
|
||||||
include OpAss
|
include OpAss
|
||||||
include RubyTests
|
include RubyTests
|
||||||
def setup
|
def setup
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
require_relative "helper"
|
require_relative "helper"
|
||||||
|
|
||||||
module Vool
|
module Vool
|
||||||
class TestReturnStatement < MiniTest::Test
|
class TestReturnStatementX < MiniTest::Test
|
||||||
include RubyTests
|
include RubyTests
|
||||||
|
|
||||||
def test_return_const
|
def test_return_const
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
require_relative "helper"
|
require_relative "helper"
|
||||||
|
|
||||||
module Vool
|
module Vool
|
||||||
class TestSend < MiniTest::Test
|
class TestSendX < MiniTest::Test
|
||||||
include RubyTests
|
include RubyTests
|
||||||
|
|
||||||
def test_simple
|
def test_simple
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
require_relative "helper"
|
require_relative "helper"
|
||||||
|
|
||||||
module Vool
|
module Vool
|
||||||
class TestVariables < MiniTest::Test
|
class TestVariablesX < MiniTest::Test
|
||||||
include RubyTests
|
include RubyTests
|
||||||
|
|
||||||
# "free standing" local can not be tested as it will result in send
|
# "free standing" local can not be tested as it will result in send
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
require_relative 'helper'
|
require_relative 'helper'
|
||||||
|
|
||||||
module Vool
|
module Vool
|
||||||
class TestWhileStatement < MiniTest::Test
|
class TestWhileStatementX < MiniTest::Test
|
||||||
include RubyTests
|
include RubyTests
|
||||||
|
|
||||||
def basic_while
|
def basic_while
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
require_relative "helper"
|
require_relative "helper"
|
||||||
|
|
||||||
module Vool
|
module Vool
|
||||||
class TestYieldStatement < MiniTest::Test
|
class TestYieldStatementX < MiniTest::Test
|
||||||
include RubyTests
|
include RubyTests
|
||||||
|
|
||||||
def setup()
|
def setup()
|
||||||
|
Loading…
Reference in New Issue
Block a user