mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-02-01 21:21:02 -05:00
34 lines
1.2 KiB
Ruby
34 lines
1.2 KiB
Ruby
## DEPRECATION NOTICE: Do not add new tests to this file!
|
|
##
|
|
## View and controller tests are deprecated in the Growstuff project
|
|
## We no longer write new view and controller tests, but instead write
|
|
## feature tests (in spec/features) using Capybara (https://github.com/jnicklas/capybara).
|
|
## These test the full stack, behaving as a browser, and require less complicated setup
|
|
## to run. Please feel free to delete old view/controller tests as they are reimplemented
|
|
## in feature tests.
|
|
##
|
|
## If you submit a pull request containing new view or controller tests, it will not be
|
|
## merged.
|
|
|
|
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
|