]> git.openstreetmap.org Git - rails.git/commitdiff
Move check_block_buttons method to other private methods
authorAnton Khorev <tony29@yandex.ru>
Fri, 26 Jul 2024 00:42:11 +0000 (03:42 +0300)
committerAnton Khorev <tony29@yandex.ru>
Fri, 26 Jul 2024 00:42:11 +0000 (03:42 +0300)
test/controllers/user_blocks_controller_test.rb

index 0c59e14390079e28f9457e2f8d4bd29fb85ab4bc..2e9d79ef759e8add899921259fc241ad3f37b3de 100644 (file)
@@ -215,19 +215,6 @@ class UserBlocksControllerTest < ActionDispatch::IntegrationTest
     check_block_buttons block, :edit => 1
   end
 
-  private
-
-  def check_block_buttons(block, edit: 0, revoke: 0)
-    [user_blocks_path, user_block_path(block)].each do |path|
-      get path
-      assert_response :success
-      assert_select "a[href='#{edit_user_block_path block}']", :count => edit
-      assert_select "a[href='#{revoke_user_block_path block}']", :count => revoke
-    end
-  end
-
-  public
-
   ##
   # test the new action
   def test_new
@@ -803,6 +790,15 @@ class UserBlocksControllerTest < ActionDispatch::IntegrationTest
 
   private
 
+  def check_block_buttons(block, edit: 0, revoke: 0)
+    [user_blocks_path, user_block_path(block)].each do |path|
+      get path
+      assert_response :success
+      assert_select "a[href='#{edit_user_block_path block}']", :count => edit
+      assert_select "a[href='#{revoke_user_block_path block}']", :count => revoke
+    end
+  end
+
   def check_block_updates(block)
     put user_block_path(block,
                         :user_block_period => "0",