我使用的是rspec-rails v3.4.2。我在网上看到了很多如下例子
describe "My Test Suite" do
# ...
end
feature "My Awesome Feature" do
# ...
end
我对FactoryGirl有类似的东西,写create(:model)
而不是输入完整版FactoryGirl.create(:model)
RSpec.configure do |config|
config.include FactoryGirl::Syntax::Methods
end
RSpec语法方法是否相同?
答案 0 :(得分:1)
默认情况下,您可以使用describe
,shared_examples
等,而不使用RSpec
前缀。另请查看https://relishapp.com/rspec/rspec-core/v/3-0/docs/configuration/global-namespace-dsl了解详情