我用 Ruby 写了正则表达式。我创建了一个文件夹名称“test”并在其中添加了 2 个文件。
第一个文件:
require 'test/unit'
class MyFirstTest < Test::Unit::TestCase
def test_for_truth
end
end
第二个文件:
require 'my_math'
require 'test/unit'
class MyMathTest < Test::Unit::TestCcase
def test_addition
end
def test_subtraction
end
end
现在,当我尝试使用命令在 ruby 命令行上运行它时ruby my_math_test.rb
。
它说
没有这样的文件或目录 --ruby
我正在使用红宝石 1.9.3
你知道如何运行这段代码吗?