From 5e0cf6b0ce0f2aa2e4712d0e14ee95282aab3ff1 Mon Sep 17 00:00:00 2001 From: Anton Khorev Date: Fri, 26 Jul 2024 03:42:11 +0300 Subject: [PATCH 1/1] Move check_block_buttons method to other private methods --- .../user_blocks_controller_test.rb | 22 ++++++++----------- 1 file changed, 9 insertions(+), 13 deletions(-) diff --git a/test/controllers/user_blocks_controller_test.rb b/test/controllers/user_blocks_controller_test.rb index 0c59e1439..2e9d79ef7 100644 --- a/test/controllers/user_blocks_controller_test.rb +++ b/test/controllers/user_blocks_controller_test.rb @@ -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", -- 2.39.5