我有一个控制器创建操作,它创建一个新的博客文章,如果文章保存成功,则运行一个附加方法。
我有一个单独的工厂女孩文件,其中包含我要发布的帖子的参数。FactoryGirl.create 调用 ruby create 方法,而不是我的控制器中的 create 操作。
如何从我的 RSpec 中的控制器调用创建操作?我如何将我的工厂女孩factories.rb
文件中的参数发送给它?
post_controller.rb
def create
@post = Post.new(params[:post])
if @post.save
@post.my_special_method
redirect_to root_path
else
redirect_to new_path
end
end
规范/请求/post_pages_spec.rb
it "should successfully run my special method" do
@post = FactoryGirl.create(:post)
@post.user.different_models.count.should == 1
end
post.rb
def my_special_method
user = self.user
special_post = Post.where("group_id IN (?) AND user_id IN (?)", 1, user.id)
if special_post.count == 10
DifferentModel.create(user_id: user.id, foo_id: foobar.id)
end
end
结尾