我只是想测试我的用户模型。
错误来自测试这个位。
describe User do
before do
@user = User.new(email: "foo@bar.com", 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)
谢谢您的帮助!