RSpec测试不显示"待定"

时间:2015-03-24 02:58:18

标签: ruby-on-rails-4 rspec2

我在Rails沙箱中创建了以下RSpec存根:

require 'spec_helper'

describe "Viewing the list of movies" do
  it "shows the movies"
end

运行rspec spec/时我希望得到这个:

*

Pending:
  Viewing the list of movies shows the movies
    # Not Yet Implemented

Finished in 0.00025 seconds
1 example, 0 failures, 1 pending

相反,我明白了:

No examples found.


Finished in 0.00008 seconds
0 examples, 0 failures

为什么我没有看到待定的测试?我已经尝试了rspec -fd spec/同样的结果。

这是在带有Rails 4.1.4和RSpec 2.13.1的openSUSE 13.1上。

1 个答案:

答案 0 :(得分:0)

看起来我没有保存文件。 /捂脸

在进行一些编辑,然后还原更改并保存后,我现在看到了:

*

Pending:
  Viewing the list of movies shows the movies
    # Not yet implemented
    # ./spec/features/list_movies_spec.rb:4

Finished in 0.0006 seconds
1 example, 0 failures, 1 pending

Randomized with seed 8110