我尝试创建一个文件,但它显示“该文件无效。”
require "./lib/NAME.rb"
require "test/unit"
class TestNAME < Test::Unit::TestCase
def test_sample
assert_equal(4, 2+2)
end
end
我的文件夹中的其他文件都很好,但对于这个文件,它不起作用。任何答案都可以
答案1
正如我所尝试的,该代码运行良好。
require "test/unit"
class TestNAME < Test::Unit::TestCase
def test_sample
assert_equal(4, 2+2)
end
end
# Running tests:
Finished tests in 0.007099s, 140.8649 tests/s, 140.8649 assertions/s.
1 tests, 1 assertions, 0 failures, 0 errors, 0 skips
ruby -v: ruby 2.0.0p353 (2013-11-22 revision 43784) [x86_64-darwin13.1.0]
我猜想文件有问题./lib/NAME.rb
。
你能将其粘贴到这里吗?