]> git.openstreetmap.org Git - rails.git/commitdiff
Merge remote-tracking branch 'upstream/pull/5091'
authorTom Hughes <tom@compton.nu>
Sun, 18 Aug 2024 10:59:42 +0000 (11:59 +0100)
committerTom Hughes <tom@compton.nu>
Sun, 18 Aug 2024 10:59:42 +0000 (11:59 +0100)
1  2 
test/controllers/user_blocks_controller_test.rb

index 57481abf8d52625747e6c726b8d843e3543de9da,277926fdc2f7d6cc7f6a96ee7140dca65a529fc2..e6782a64d0d3910393c70b026f1350b738211e3e
@@@ -13,10 -13,6 +13,6 @@@ class UserBlocksControllerTest < Action
        { :path => "/user_blocks", :method => :get },
        { :controller => "user_blocks", :action => "index" }
      )
-     assert_routing(
-       { :path => "/user_blocks/new", :method => :get },
-       { :controller => "user_blocks", :action => "new" }
-     )
      assert_routing(
        { :path => "/user_blocks", :method => :post },
        { :controller => "user_blocks", :action => "create" }
    end
  
    def check_inactive_block_updates(block)
 +    original_ends_at = block.ends_at
 +
      put user_block_path(block,
                          :user_block_period => "0",
                          :user_block => { :needs_view => false, :reason => "Updated Reason" })
      block.reload
      assert_not_predicate block, :active?
      assert_equal "Updated Reason", block.reason
 +    assert_equal original_ends_at, block.ends_at
  
      put user_block_path(block,
                          :user_block_period => "0",
      block.reload
      assert_not_predicate block, :active?
      assert_equal "Updated Reason", block.reason
 +    assert_equal original_ends_at, block.ends_at
  
      put user_block_path(block,
                          :user_block_period => "1",
      block.reload
      assert_not_predicate block, :active?
      assert_equal "Updated Reason", block.reason
 +    assert_equal original_ends_at, block.ends_at
  
      put user_block_path(block,
                          :user_block_period => "0",
      block.reload
      assert_not_predicate block, :active?
      assert_equal "Updated Reason Again", block.reason
 +    assert_equal original_ends_at, block.ends_at
    end
  
    def check_user_blocks_table(user_blocks)