require 'spec_helper' describe "attachments/show" do before(:each) do @attachment = assign(:attachment, stub_model(Attachment, :name => "Name" )) end it "renders attributes in
" do render # Run the generator again with the --webrat flag if you want to use webrat matchers rendered.should match(/Name/) end end