ユーザーモデルをテストしようとしているだけです。
エラーは、このビットのテストから発生します。
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)
助けてくれてありがとう!