Sha256: 07106af4780772069ea01ccbb00953b6bcc2055346a93d072a18ca5fe95daa59

Contents?: true

Size: 782 Bytes

Versions: 27

Compression:

Stored size: 782 Bytes

Contents

require 'rails_helper'

describe "import_requests/show" do
  before(:each) do
    @import_request = assign(:import_request, stub_model(ImportRequest,
      isbn: "1111111111",
      created_at: Time.zone.now
    ))
  end

  it "renders attributes in <p>" do
    render
    # Run the generator again with the --webrat flag if you want to use webrat matchers
    rendered.should match(/Id/)
    # Run the generator again with the --webrat flag if you want to use webrat matchers
    rendered.should match(/ISBN/)
    # Run the generator again with the --webrat flag if you want to use webrat matchers
    rendered.should match(localized_state('pending'))
    # Run the generator again with the --webrat flag if you want to use webrat matchers
    rendered.should match(/1/)
  end
end

Version data entries

27 entries across 27 versions & 1 rubygems

Version Path
enju_biblio-0.3.4 spec/views/import_requests/show.html.erb_spec.rb
enju_biblio-0.3.3 spec/views/import_requests/show.html.erb_spec.rb
enju_biblio-0.3.2 spec/views/import_requests/show.html.erb_spec.rb
enju_biblio-0.3.1 spec/views/import_requests/show.html.erb_spec.rb
enju_biblio-0.3.0 spec/views/import_requests/show.html.erb_spec.rb
enju_biblio-0.3.0.rc.1 spec/views/import_requests/show.html.erb_spec.rb
enju_biblio-0.3.0.beta.2 spec/views/import_requests/show.html.erb_spec.rb