当我写rspec并逐行运行行号时。 它工作正常并通过。
当我运行整个rspec时,它失败
context "scope" do
before do
@current_user = User.current = User.first
end
it "should have user" do
@current_user.should_not be_nil
end
end
我花了几个小时才发现它失败的原因。
答案 0 :(得分:2)