]> git.openstreetmap.org Git - rails.git/commitdiff
Decrease number of issues in pagination test
authorAnton Khorev <tony29@yandex.ru>
Thu, 29 Aug 2024 15:57:27 +0000 (18:57 +0300)
committerAnton Khorev <tony29@yandex.ru>
Thu, 29 Aug 2024 15:57:27 +0000 (18:57 +0300)
test/system/issues_test.rb

index f00f766a232f5628d3cd13ab867c17fae8eed01b..4d6d9519bf725215efa722c30632cda810d3863f 100644 (file)
@@ -163,22 +163,22 @@ class IssuesTest < ApplicationSystemTestCase
   end
 
   def test_issues_pagination
   end
 
   def test_issues_pagination
-    1.upto(80).each do |n|
+    1.upto(8).each do |n|
       user = create(:user, :display_name => "extra_#{n}")
       create(:issue, :reportable => user, :reported_user => user, :assigned_role => "administrator")
     end
 
     sign_in_as(create(:administrator_user))
 
       user = create(:user, :display_name => "extra_#{n}")
       create(:issue, :reportable => user, :reported_user => user, :assigned_role => "administrator")
     end
 
     sign_in_as(create(:administrator_user))
 
-    visit issues_path
+    visit issues_path(:limit => 5)
 
     # First Page
     assert_no_content I18n.t("issues.page.user_not_found")
     assert_no_content I18n.t("issues.page.issues_not_found")
 
     # First Page
     assert_no_content I18n.t("issues.page.user_not_found")
     assert_no_content I18n.t("issues.page.issues_not_found")
-    31.upto(80).each do |n|
+    4.upto(8).each do |n|
       assert_content(/extra_#{n}[^\d]/i, :count => 2)
     end
       assert_content(/extra_#{n}[^\d]/i, :count => 2)
     end
-    1.upto(30).each do |n|
+    1.upto(3).each do |n|
       assert_no_content(/extra_#{n}[^\d]/i)
     end
 
       assert_no_content(/extra_#{n}[^\d]/i)
     end
 
@@ -186,10 +186,10 @@ class IssuesTest < ApplicationSystemTestCase
     click_on I18n.t("issues.page.older_issues")
     assert_no_content I18n.t("issues.page.user_not_found")
     assert_no_content I18n.t("issues.page.issues_not_found")
     click_on I18n.t("issues.page.older_issues")
     assert_no_content I18n.t("issues.page.user_not_found")
     assert_no_content I18n.t("issues.page.issues_not_found")
-    31.upto(80).each do |n|
+    4.upto(8).each do |n|
       assert_no_content(/extra_#{n}[^\d]/i)
     end
       assert_no_content(/extra_#{n}[^\d]/i)
     end
-    1.upto(30).each do |n|
+    1.upto(3).each do |n|
       assert_content(/extra_#{n}[^\d]/i, :count => 2)
     end
 
       assert_content(/extra_#{n}[^\d]/i, :count => 2)
     end
 
@@ -197,10 +197,10 @@ class IssuesTest < ApplicationSystemTestCase
     click_on I18n.t("issues.page.newer_issues")
     assert_no_content I18n.t("issues.page.user_not_found")
     assert_no_content I18n.t("issues.page.issues_not_found")
     click_on I18n.t("issues.page.newer_issues")
     assert_no_content I18n.t("issues.page.user_not_found")
     assert_no_content I18n.t("issues.page.issues_not_found")
-    31.upto(80).each do |n|
+    4.upto(8).each do |n|
       assert_content(/extra_#{n}[^\d]/i, :count => 2)
     end
       assert_content(/extra_#{n}[^\d]/i, :count => 2)
     end
-    1.upto(30).each do |n|
+    1.upto(3).each do |n|
       assert_no_content(/extra_#{n}[^\d]/i)
     end
   end
       assert_no_content(/extra_#{n}[^\d]/i)
     end
   end