Files
fetsite/spec/views/comments/index.html.erb_spec.rb
2014-10-17 10:17:23 +02:00

16 lines
308 B
Ruby

require 'spec_helper'
describe "comments/index" do
before(:each) do
assign(:comments, [
stub_model(Comment),
stub_model(Comment)
])
end
it "renders a list of comments" do
render
# Run the generator again with the --webrat flag if you want to use webrat matchers
end
end