13 lines
275 B
Ruby
13 lines
275 B
Ruby
require 'spec_helper'
|
|
|
|
describe "comments/show" do
|
|
before(:each) do
|
|
@comment = assign(:comment, stub_model(Comment))
|
|
end
|
|
|
|
it "renders attributes in <p>" do
|
|
render
|
|
# Run the generator again with the --webrat flag if you want to use webrat matchers
|
|
end
|
|
end
|