зеркало из https://github.com/github/github-ds.git
Increment multiple using the default value
This commit is contained in:
Родитель
00ec9a6454
Коммит
b8b6ad9cee
|
@ -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")
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче