Sha256: 5bc16668375beb2c5571e5a43d65ef0d29ab5b728076f5d420da317a9728aaad
Contents?: true
Size: 516 Bytes
Versions: 51
Compression:
Stored size: 516 Bytes
Contents
require 'spec_helper' describe "produces/show" do before(:each) do @produce = assign(:produce, stub_model(Produce, :manifestation_id => 1, :patron_id => 1 )) @ability = Object.new @ability.extend(CanCan::Ability) controller.stub(:current_ability) { @ability } 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(/#{Manifestation.find(1).original_title}/) end end
Version data entries
51 entries across 51 versions & 1 rubygems