标签: ruby-on-rails unit-testing rspec
describe "on GET to index" do it "renders the index template" do get :index response.should render_template('index') end end
当我添加到五个不同的控制器时,我觉得测试很重要,只是多余的。有没有办法在控制器类之间共享测试,或者在rspec中包含方法调用的特定代码块?或者,这是复制的最佳做法,在这种情况下?
答案 0 :(得分:3)
是you can,我认为这会带来更清晰的代码。