Sha256: b8be93e638e1b2d652f40855acd5e1155c7e5591b8524b48aed035b3ad4539a5

Contents?: true

Size: 1013 Bytes

Versions: 8

Compression:

Stored size: 1013 Bytes

Contents

require 'rails_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

8 entries across 8 versions & 1 rubygems

Version Path
enju_circulation-0.2.5 spec/views/use_restrictions/index.html.erb_spec.rb
enju_circulation-0.2.4 spec/views/use_restrictions/index.html.erb_spec.rb
enju_circulation-0.2.3 spec/views/use_restrictions/index.html.erb_spec.rb
enju_circulation-0.2.2 spec/views/use_restrictions/index.html.erb_spec.rb
enju_circulation-0.2.1 spec/views/use_restrictions/index.html.erb_spec.rb
enju_circulation-0.2.0 spec/views/use_restrictions/index.html.erb_spec.rb
enju_circulation-0.2.0.beta.4 spec/views/use_restrictions/index.html.erb_spec.rb
enju_circulation-0.2.0.beta.3 spec/views/use_restrictions/index.html.erb_spec.rb