Sha256: 9865b43338d8f34887eb09965f36397d8b322c9b03f9888fdfb7d531f6b7e776
Contents?: true
Size: 1012 Bytes
Versions: 2
Compression:
Stored size: 1012 Bytes
Contents
require 'spec_helper' describe "use_restrictions/index" do fixtures :users, :roles, :user_has_roles before(:each) do view.extend EnjuLeaf::EnjuLeafHelper assign(:use_restrictions, Kaminari::paginate_array([ stub_model(UseRestriction, :name => "Not For Loan", :display_name => "Not For Loan", :note => "MyText", :position => 1 ), stub_model(UseRestriction, :name => "On Loan", :display_name => "On Loan", :note => "MyText", :position => 2 ) ]).page(1)) end it "renders a list of use_restrictions" do allow(view).to receive(:policy).and_return double(create?: true, update?: true, destroy?: true) render # Run the generator again with the --webrat flag if you want to use webrat matchers assert_select "tr>td:nth-child(3)", /Not For Loan/ # Run the generator again with the --webrat flag if you want to use webrat matchers assert_select "tr>td:nth-child(3)", /MyText/ end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
enju_circulation-0.2.0.beta.2 | spec/views/use_restrictions/index.html.erb_spec.rb |
enju_circulation-0.2.0.beta.1 | spec/views/use_restrictions/index.html.erb_spec.rb |