Sha256: 13a9228a3a98c12fa9df2da20ef83402186edca36031262973e88b54f2ebc895
Contents?: true
Size: 566 Bytes
Versions: 51
Compression:
Stored size: 566 Bytes
Contents
require 'spec_helper' describe "owns/new" do before(:each) do assign(:own, stub_model(Own, :item_id => 1, :patron_id => 1 ).as_new_record) @ability = Object.new @ability.extend(CanCan::Ability) controller.stub(:current_ability) { @ability } end it "renders new own form" do render # Run the generator again with the --webrat flag if you want to use webrat matchers assert_select "form", :action => owns_path, :method => "post" do assert_select "input#own_item_id", :name => "own[item_id]" end end end
Version data entries
51 entries across 51 versions & 1 rubygems