16 lines
349 B
Ruby
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
|