Sha256: aefe9321cebe56a918e6561d2d9a7ca1a13fa37690e6c57ee1c02569cfe208ab
Contents?: true
Size: 762 Bytes
Versions: 51
Compression:
Stored size: 762 Bytes
Contents
require 'spec_helper' describe "produces/new" do fixtures :produce_types before(:each) do assign(:produce, stub_model(Produce, :manifestation_id => 1, :patron_id => 1 ).as_new_record) @produce_types = ProduceType.all @ability = Object.new @ability.extend(CanCan::Ability) controller.stub(:current_ability) { @ability } end it "renders new produce form" do render # Run the generator again with the --webrat flag if you want to use webrat matchers assert_select "form", :action => produces_path, :method => "post" do assert_select "input#produce_manifestation_id", :name => "produce[manifestation_id]" assert_select "input#produce_patron_id", :name => "produce[patron_id]" end end end
Version data entries
51 entries across 51 versions & 1 rubygems