私はMichaelHartlのRubyonRailsチュートリアルで作業しており、ユーザーをモデリングしています。User_spec.rbテストが失敗し、エラーの私の読み取りは、コードがアクセス可能であると言っているにもかかわらず、何らかの理由で属性がアクセス可能として読み取られていないことです。rake db:test:prepareも実行しました。どんな助けでも大歓迎です。
ユーザーモデルは単純です。
app / models / user.rb
class User < ActiveRecord::Base
attr_accessible :name, :email
end
spec / models/user_spec.rbでのテストは次のとおりです。
require 'spec_helper'
describe User do
before { @user = User.new(user: "Example User", email: "user@example.com") }
subject { @user }
it { should respond_to(:name) }
it { should respond_to(:email) }
end