[rubygems/rubygems] Fix argument order of assert_equal

https://github.com/rubygems/rubygems/commit/a7c015f82b
This commit is contained in:
Nobuyoshi Nakada 2023-06-21 17:17:19 +09:00 committed by git
parent ddb431c960
commit 67ab8b4346

View File

@ -69,7 +69,7 @@ class TestUpdateSuggestion < Gem::TestCase
with_eglible_environment(cmd: @cmd) do with_eglible_environment(cmd: @cmd) do
Time.stub :now, 123_456_789 do Time.stub :now, 123_456_789 do
assert @cmd.eglible_for_update? assert @cmd.eglible_for_update?
assert_equal Gem.configuration.last_update_check, 123_456_789 assert_equal 123_456_789, Gem.configuration.last_update_check
# test last check is written to config file # test last check is written to config file
assert File.read(Gem.configuration.state_file_name).match("123456789") assert File.read(Gem.configuration.state_file_name).match("123456789")
@ -86,7 +86,7 @@ class TestUpdateSuggestion < Gem::TestCase
with_eglible_environment(cmd: @cmd, rubygems_version: current_version, latest_rubygems_version: latest_version) do with_eglible_environment(cmd: @cmd, rubygems_version: current_version, latest_rubygems_version: latest_version) do
Time.stub :now, @start_time do Time.stub :now, @start_time do
refute @cmd.eglible_for_update? refute @cmd.eglible_for_update?
assert_equal Gem.configuration.last_update_check, @start_time assert_equal @start_time, Gem.configuration.last_update_check
end end
end end
@ -100,7 +100,7 @@ class TestUpdateSuggestion < Gem::TestCase
) do ) do
Time.stub :now, @start_time + @week do Time.stub :now, @start_time + @week do
refute @cmd.eglible_for_update? refute @cmd.eglible_for_update?
assert_equal Gem.configuration.last_update_check, @start_time + @week assert_equal @start_time + @week, Gem.configuration.last_update_check
end end
end end
@ -117,7 +117,7 @@ class TestUpdateSuggestion < Gem::TestCase
) do ) do
Time.stub :now, @start_time + @week + @minute do Time.stub :now, @start_time + @week + @minute do
refute @cmd.eglible_for_update? refute @cmd.eglible_for_update?
assert_equal Gem.configuration.last_update_check, @start_time + @week assert_equal @start_time + @week, Gem.configuration.last_update_check
end end
end end
end end
@ -127,19 +127,19 @@ class TestUpdateSuggestion < Gem::TestCase
# checking for first time, it is eglible and stored # checking for first time, it is eglible and stored
Time.stub :now, @start_time do Time.stub :now, @start_time do
assert @cmd.eglible_for_update? assert @cmd.eglible_for_update?
assert_equal Gem.configuration.last_update_check, @start_time assert_equal @start_time, Gem.configuration.last_update_check
end end
# checking minute later is not eglible and not stored # checking minute later is not eglible and not stored
Time.stub :now, @start_time + @minute do Time.stub :now, @start_time + @minute do
refute @cmd.eglible_for_update? refute @cmd.eglible_for_update?
assert_equal Gem.configuration.last_update_check, @start_time assert_equal @start_time, Gem.configuration.last_update_check
end end
# checking week later is eglible again and stored # checking week later is eglible again and stored
Time.stub :now, @start_time + @week do Time.stub :now, @start_time + @week do
assert @cmd.eglible_for_update? assert @cmd.eglible_for_update?
assert_equal Gem.configuration.last_update_check, @start_time + @week assert_equal @start_time + @week, Gem.configuration.last_update_check
end end
end end
end end