我有一个带有rspec-rails 3.5.1的rails 4.2应用程序
我在spec/features/<module>/<feature>_spec.rb
当我跑步时
bin/rspec
或
bin/rake spec
功能规格不会运行。
如果我这样做,它们会运行良好
bin/rspec spec/features/*/*_spec.rb
如何在默认规范中包含此路径?
更新
这是简短的规范之一
require 'rails_helper'
Rspec.describe 'User logs in', :type => :feature do
let(:user) { FactoryGirl.create(:user) }
scenario 'with valid credentials' do
... setup ...
expect(page).to have_content "Success"
end
end
我也尝试用Rspec.describe
,describe
,feature
替换Rspec.feature
。规范不在默认规范中运行。