我有以下文件:
require 'test_helper'
class SomeTest < ActiveSupport::TestCase
...
require 'test_helper'
class SomeOtherTest < ActiveSupport::TestCase
...
我怎么能运行它们?但不是测试文件夹中的所有其他文件。我使用的是Rails 2.3.14。
没有多次重新加载环境。
答案 0 :(得分:0)
试试这些:
ruby -I test test/unit/some_test.rb
ruby -I test test/unit/some_other_test.rb
您的测试文件可能只是另一个目录,只需使用它们的路径。