2016-10-03 93 views
0

我正在使用rspec-rails v3.4.2。我看到網上很多例子如下RSpec Rails語法助手

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的語法相同方法?

回答