Sha256: 15efa5ad186075cf3ada3d48334f4e3d4ff25d762337e54a766de4fc605af8d6

Contents?: true

Size: 800 Bytes

Versions: 8

Compression:

Stored size: 800 Bytes

Contents

require 'rails_helper'

describe "checkouts/show" do
  fixtures :checkouts, :users, :user_has_roles, :roles, :profiles

  before(:each) do
    @checkout = assign(:checkout, stub_model(Checkout,
      user_id: 2,
      item_id: 1
    ))
    assign(:library_group, LibraryGroup.site_config)
    I18n.locale = :en
    view.stub(:current_user).and_return(User.where(username: 'enjuadmin').first)
  end

  it "renders attributes in <p>" do
    allow(view).to receive(:policy).and_return double(update?: true, destroy?: true)
    render
    # Run the generator again with the --webrat flag if you want to use webrat matchers
    rendered.should match(/Due date/)
    # Run the generator again with the --webrat flag if you want to use webrat matchers
    rendered.should match(/Item identifier/)
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

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