gpt4 book ai didi

ruby-on-rails - 独立测试 Rails 部分 View

转载 作者:数据小太阳 更新时间:2023-10-29 07:07:23 24 4
gpt4 key购买 nike

我在标准 rails 2.1 项目中使用 Test/Unit。我希望能够独立于任何特定的 Controller /操作来测试分部 View 。

好像ZenTest's Test::Rails::ViewTestCase会有所帮助,但我无法让它工作,与 view_test http://www.continuousthinking.com/tags/view_test 类似

Google 出现的大部分内容似乎都已经过时了,所以我猜它并不真正适用于 Rails 2.1

非常感谢任何帮助。

谢谢,罗兰

最佳答案

我们正在使用 RSpec在我们的 Rails 2.1 项目中,我们可以做这样的事情:

describe "/posts/_form" do
before do
render :partial => "posts/form"
end
it "says hello" do
response.should match(/hello/i)
end
it "renders a form" do
response.should have_tag("form")
end
end

但是我不知道您可以使用 vanilla Rails 测试设备做多少。

关于ruby-on-rails - 独立测试 Rails 部分 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/182865/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com