rubyx/test/fragments/test_foo.rb
2015-07-18 15:28:57 +03:00

26 lines
344 B
Ruby

require_relative 'helper'
class TestFoo < MiniTest::Test
include Fragments
def test_foo2
@string_input = <<HERE
def foo2(x)
a = 5
end
3.foo( 4 )
HERE
@expect = [Parfait::Method , Virtual::Return ]
check
end
def test_foo
@string_input = <<HERE
3.foo( 4 )
HERE
@expect = [Virtual::Return ]
check
end
end