Files
fetsite/spec/views/attachments/show.html.erb_spec.rb
2013-08-05 18:31:04 +02:00

16 lines
349 B
Ruby

require 'spec_helper'
describe "attachments/show" do
before(:each) do
@attachment = assign(:attachment, stub_model(Attachment,
:name => "Name"
))
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(/Name/)
end
end