我正在尝试使用 FactoryGirl 为我的控制器规格之一创建一些项目:
摘录:
describe ItemsController do
let(:item1){Factory(:item)}
let(:item2){Factory(:item)}
# This fails. @items is nil because Item.all returned nothing
describe "GET index" do
it "should assign all items to @items" do
get :index
assigns(:items).should include(item1, item2)
end
end
# This passes and Item.all returns something
describe "GET show" do
it "should assign the item with the given id to @item" do
get :show, id => item1.id
assigns(:item).should == item1
end
end
end
当我将让更改为:
before(:each) do
@item1 = Factory(:item)
@item2 = Factory(:item)
end
我把@s放在变量前面,一切正常。为什么让我们工作的版本不起作用?我尝试将 let 更改为 let!s 并看到相同的行为。