最佳答案
现在,如果我使用 rake spec
运行我的测试套件,我会得到一个错误:
1) SegmentsController GET 'index' should work Failure/Error: get 'index' undefined method `locale' for # # ./spec/controllers/segments_controller_spec.rb:14: in `block (3 levels) in '
这很正常,因为我确实有一个错误:)
问题是追踪不是很有用。我知道它在 segments_controller_spec.rb
第14行坏了,但这正是我称之为测试的地方:
### segments_controller_spec.rb:14
get 'index'
我希望有实际的行中断和完整的跟踪,而不是规格文件夹中的部分。
运行 --trace
没有帮助。