Increment multiple using the default value

This commit is contained in:
Matt Langlois 2019-08-05 18:08:25 -07:00
Родитель 00ec9a6454
Коммит b8b6ad9cee
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 0472F74D7368B36B
1 изменённых файлов: 7 добавлений и 1 удалений

Просмотреть файл

@ -67,6 +67,13 @@ class GitHub::KVTest < Minitest::Test
end
def test_increment_multiple
@kv.increment("foo")
result = @kv.increment("foo")
assert_equal 2, result
end
def test_increment_multiple_different_values
@kv.increment("foo")
result = @kv.increment("foo", amount: 2)
@ -81,7 +88,6 @@ class GitHub::KVTest < Minitest::Test
assert_equal 2, result
end
# TODO: handle non-integer values properly
def test_increment_non_integer
@kv.set("foo", "bar")