Sha256: 34c346eb51eef61788ef62a28711da63ad6d8bf6f1946edbdbdcb22ff7e9ef81
Contents?: true
Size: 645 Bytes
Versions: 3
Compression:
Stored size: 645 Bytes
Contents
require 'spec_helper' describe "produces/new" do fixtures :produce_types before(:each) do assign(:produce, stub_model(Produce, :manifestation_id => 1, :agent_id => 1 ).as_new_record) @produce_types = ProduceType.all 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_agent_id", :name => "produce[agent_id]" end end end
Version data entries
3 entries across 3 versions & 1 rubygems