Refactor user_changeset_comments integration test to use factories.
This commit is contained in:
parent
0facb801f8
commit
1911ea8914
1 changed files with 8 additions and 5 deletions
|
@ -1,11 +1,11 @@
|
|||
require "test_helper"
|
||||
|
||||
class UserChangesetCommentsTest < ActionDispatch::IntegrationTest
|
||||
fixtures :users, :changesets
|
||||
|
||||
# Test 'log in to comment' message for nonlogged in user
|
||||
def test_log_in_message
|
||||
get "/changeset/#{changesets(:normal_user_closed_change).id}"
|
||||
changeset = create(:changeset, :closed)
|
||||
|
||||
get "/changeset/#{changeset.id}"
|
||||
assert_response :success
|
||||
|
||||
assert_select "div#content" do
|
||||
|
@ -21,15 +21,18 @@ class UserChangesetCommentsTest < ActionDispatch::IntegrationTest
|
|||
|
||||
# Test if the form is shown
|
||||
def test_displaying_form
|
||||
user = create(:user)
|
||||
changeset = create(:changeset, :closed)
|
||||
|
||||
get_via_redirect "/login"
|
||||
# We should now be at the login page
|
||||
assert_response :success
|
||||
assert_template "user/login"
|
||||
# We can now login
|
||||
post "/login", "username" => "test@openstreetmap.org", "password" => "test"
|
||||
post "/login", "username" => user.email, "password" => "test"
|
||||
assert_response :redirect
|
||||
|
||||
get "/changeset/#{changesets(:normal_user_closed_change).id}"
|
||||
get "/changeset/#{changeset.id}"
|
||||
|
||||
assert_response :success
|
||||
assert_template "browse/changeset"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue