Sha256: bb08a24a90ec8e8a228cea273d718345f5700d081d1642ad4aa6c704e1df5005
Contents?: true
Size: 515 Bytes
Versions: 33
Compression:
Stored size: 515 Bytes
Contents
require 'spec_helper' describe "produces/show" do before(:each) do @produce = assign(:produce, stub_model(Produce, :manifestation_id => 1, :agent_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
33 entries across 33 versions & 1 rubygems