0

我有以下文件:

require 'test_helper'

class SomeTest < ActiveSupport::TestCase
  ...


require 'test_helper'

class SomeOtherTest < ActiveSupport::TestCase
  ...

我怎么能运行它们?,但不是测试文件夹中的所有其他文件。我正在使用 Rails 2.3.14。

更新

无需多次重新加载环境。

4

1 回答 1

0

试试这些:

ruby -I test test/unit/some_test.rb
ruby -I test test/unit/some_other_test.rb

您的测试文件可能是另一个目录,只需使用它们的路径即可。

于 2013-08-16T20:54:44.710 回答