16 lines
356 B
Ruby
16 lines
356 B
Ruby
require 'spec_helper'
|
|
|
|
describe "comments/new" do
|
|
before(:each) do
|
|
assign(:comment, stub_model(Comment).as_new_record)
|
|
end
|
|
|
|
it "renders new comment form" do
|
|
render
|
|
|
|
# Run the generator again with the --webrat flag if you want to use webrat matchers
|
|
assert_select "form[action=?][method=?]", comments_path, "post" do
|
|
end
|
|
end
|
|
end
|