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