mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-02-02 13:41:00 -05:00
We deprecated controller and view specs on the grounds that they were brittle, and were a poorer measure of user experience than feature specs. However, feature specs have their own problems: they're much slower to run, and flakier (see #901). We also ran into a few cases where feature specs erroneously passed because they were checking for the presence of a string that occurred in the error page! Hence, we're cautiously un-deprecating controller and view specs. Fixes #1132
22 lines
630 B
Ruby
22 lines
630 B
Ruby
require 'rails_helper'
|
|
|
|
describe "forums/edit" do
|
|
before(:each) do
|
|
@forum = assign(:forum, stub_model(Forum,
|
|
name: "MyString",
|
|
description: "MyText",
|
|
owner_id: 1))
|
|
end
|
|
|
|
it "renders the edit forum form" do
|
|
render
|
|
|
|
# Run the generator again with the --webrat flag if you want to use webrat matchers
|
|
assert_select "form", action: forums_path(@forum), method: "post" do
|
|
assert_select "input#forum_name", name: "forum[name]"
|
|
assert_select "textarea#forum_description", name: "forum[description]"
|
|
assert_select "select#forum_owner_id", name: "forum[owner_id]"
|
|
end
|
|
end
|
|
end
|