Fix warnings about tests with no assertions
This commit is contained in:
parent
be2678e0dd
commit
60c1ae79d6
3 changed files with 28 additions and 30 deletions
|
@ -88,8 +88,4 @@ class ApplicationHelperTest < ActionView::TestCase
|
||||||
date = friendly_date_ago(Time.now.utc - 4.months)
|
date = friendly_date_ago(Time.now.utc - 4.months)
|
||||||
assert_match %r{^<time title=".*">4 months ago</time>$}, date
|
assert_match %r{^<time title=".*">4 months ago</time>$}, date
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_body_class; end
|
|
||||||
|
|
||||||
def test_header_nav_link_class; end
|
|
||||||
end
|
end
|
||||||
|
|
|
@ -171,13 +171,13 @@ class UserCreationTest < ActionDispatch::IntegrationTest
|
||||||
end
|
end
|
||||||
|
|
||||||
# Check that the user can successfully recover their password
|
# Check that the user can successfully recover their password
|
||||||
def test_lost_password_recovery_success
|
# def test_lost_password_recovery_success
|
||||||
# Open the lost password form
|
# Open the lost password form
|
||||||
# Submit the lost password form
|
# Submit the lost password form
|
||||||
# Check the e-mail
|
# Check the e-mail
|
||||||
# Submit the reset password token
|
# Submit the reset password token
|
||||||
# Check that the password has changed, and the user can login
|
# Check that the password has changed, and the user can login
|
||||||
end
|
# end
|
||||||
|
|
||||||
def test_user_create_redirect
|
def test_user_create_redirect
|
||||||
new_email = "redirect_tester@osm.org"
|
new_email = "redirect_tester@osm.org"
|
||||||
|
|
|
@ -28,6 +28,7 @@ class HistoryTest < ApplicationSystemTestCase
|
||||||
create_visible_changeset(user, "next-changeset")
|
create_visible_changeset(user, "next-changeset")
|
||||||
end
|
end
|
||||||
|
|
||||||
|
assert_nothing_raised do
|
||||||
visit "#{user_path(user)}/history"
|
visit "#{user_path(user)}/history"
|
||||||
changesets = find "div.changesets"
|
changesets = find "div.changesets"
|
||||||
changesets.assert_text "bottom-changeset-in-batch-1"
|
changesets.assert_text "bottom-changeset-in-batch-1"
|
||||||
|
@ -50,6 +51,7 @@ class HistoryTest < ApplicationSystemTestCase
|
||||||
changesets.assert_selector "ol", :count => 1
|
changesets.assert_selector "ol", :count => 1
|
||||||
changesets.assert_selector "li", :count => (2 * PAGE_SIZE) + 1
|
changesets.assert_selector "li", :count => (2 * PAGE_SIZE) + 1
|
||||||
end
|
end
|
||||||
|
end
|
||||||
|
|
||||||
def create_visible_changeset(user, comment)
|
def create_visible_changeset(user, comment)
|
||||||
create(:changeset, :user => user, :num_changes => 1) do |changeset|
|
create(:changeset, :user => user, :num_changes => 1) do |changeset|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue