我在Ruby中編寫了正則表達式。 我創建了一個文件夾名稱「test」,並在其中添加2個文件。測試ruby代碼
一號文件:
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 my_math_test.rb
紅寶石命令行運行此。
它說
沒有這樣的文件或目錄--ruby
我使用Ruby 1.9.3
你知道如何運行該代碼?
感謝您的回覆豐富,但我不是在這裏創建整個項目,我只有2個文件,我想對其中一個文件運行測試。 – Jags 2013-02-27 02:02:21
看看這個鏈接,然後:http://flavio.castelli.name/2010/05/28/rails_execute_single_test/ – 2013-02-27 02:05:30