Example Of Using With_options In Rspec Test
Join the DZone community and get the full member experience.
Join For Free// description of your code here
it "should have working pages" do
with_options :blog_id => @blog, :post_id => @post do |page|
page.get :new
page.post :create, :comment => { }
page.delete :destroy, :id => comments(:blog_comment)
end
end
Testing
Opinions expressed by DZone contributors are their own.
Comments