2012-09-11 39 views
1

我只是試圖測試我的用戶模型。`主題':參數的錯誤數量(1代表0)(ArgumentError)使用水豚

錯誤來自測試此位。

describe User do 
    before do 
    @user = User.new(email: "[email protected]", password:"foobar", 
       password_confirmation:"foobar", goal:"cut") 
    end 

    subject(@user)  
    . 
    . 
    . 

這裏是確切的錯誤:

rspec-core-2.10.1/lib/rspec/core/subject.rb:180:in `subject': wrong number of arguments (1 for 0) (ArgumentError) 

感謝您的幫助!

回答

相關問題