我正在阅读Michael Hartl的无价教程,我遇到了一些Rspec错误。我已经仔细检查了一切,但似乎我仍然遗漏了一些东西。这是错误消息的样子。
最困扰我的是当我生成Microposts模型时,我偶然在其中一个选项中输入了一个拼写错误,因此我在再次生成模型之前使用rails销毁模型Microposts以撤消generate命令。我想知道这是否与我所看到的错误有关。
我真的希望尽快完成本教程,以便我可以继续构建自己的Web应用程序。任何帮助将不胜感激。
这是我的代码的样子。
micropost_pages_spec.rb
require 'spec_helper'
describe "MicropostPages" do
subject {page}
let(:user) {FactoryGirl.create(:user)}
before {sign_in user}
describe "micropost creation" do
before {visit root_path}
describe "with invalid information" do
it "should not create a micropost" do
expect {click_button "Post"}.not_to change(Micropost, :count)
end
describe "error messages" do
before {click_button "Post"}
it {should have_content('error')}
end
end
end
end
microposts_controller.rb
class MicropostsController < ApplicationController
before_filter :signed_in_user, only: [:create, :destroy]
def create
@micropost = current_user.micropost.build(params[:micropost])
if @micropost.save
flash[:success] = "Micropost created!"
redirect_to root_path
else
render 'static_pages/home'
end
end
def destroy
end
end
static_pages_controller.rb
class StaticPagesController < ApplicationController
def home
@micropost = current_user.microposts.build if signed_in?
end
def help
end
def about
end
def contact
end
end
user.rb(用户模型)
class User < ActiveRecord::Base
attr_accessible :email, :name, :password, :password_confirmation
has_secure_password
has_many :microposts, dependent: :destroy
before_save {self.email.downcase!}
before_save :create_remember_token
VALID_EMAIL_REGEX = /\A[\w+\-.]+@[a-z\d\-.]+\.[a-z]+\z/i
validates :name, presence: true, length: {maximum: 50}
validates :email, presence: true, format: {with: VALID_EMAIL_REGEX},
uniqueness: {case_sensitive: false}
validates :password, presence: true, length: {minimum: 6}
validates :password_confirmation, presence: true
private
def create_remember_token
self.remember_token = SecureRandom.urlsafe_base64
end
end
答案 0 :(得分:1)
错误在于这一行:
@micropost = current_user.micropost.build(params[:micropost])
应该是:
@micropost = current_user.microposts.build(params[:micropost])
当您使用micropost
时,您正在使用microposts
。