您将如何在 RSpec 中测试此操作?
我是 RSpec 的新手,我的 ruby on Rails 代码中有这个控制器,
def create
@article = current_user.articles.build params[:article]
if @article.save
redirect_to articles_path, :notice => 'Article saved successfully!'
else
render :new
end
end
您将如何在 RSpec 中测试此操作?
谢谢
I'm a newbie in RSpec, I have this controller in my ruby on rails code
def create
@article = current_user.articles.build params[:article]
if @article.save
redirect_to articles_path, :notice => 'Article saved successfully!'
else
render :new
end
end
How would you test this action in RSpec ?
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)