mock_redis 0.17.2 → 0.17.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a6964254237dcb85924a41b08802b43875d9285d
4
- data.tar.gz: 96914898547b94bea6e7fcedd59275473f3bea2e
3
+ metadata.gz: 293ef8fd1bbce6f4a890edc7dbf7afa1235eb885
4
+ data.tar.gz: 2339b903a136416a24d6630c06dde8ffcde8eee1
5
5
  SHA512:
6
- metadata.gz: 6c955b02cf5fd7c4b3b251a29fc6879d7156ea16875367041a24833f3812c11448ba011a9210e221fb89299ec50efa969913c0c9c774522fd31d3e21443f7380
7
- data.tar.gz: 600fe03cfd32d108ae506e651026b5372d5a987511a92a8190b7b438d7360fd982645effbcac88668f11815fa5c072e111726b3d0529a340e0654cae37147259
6
+ metadata.gz: ec8caa7328b7365c9b120837acd873bf535ccee1364590045d8be55989e20e4a53d00fd5952cda910826ba506d61b2a509b06e139deff5f8bd79029475c9b28c
7
+ data.tar.gz: 68fcb5906a717d679f2d8f3278226a0a213dc4250e314e97fdba647aaf2b3bcd9dec0640ca8db4b916dea9278d4737fce17d3b6f6de8d6288947a83c93128881
@@ -1,6 +1,8 @@
1
1
  # MockRedis Changelog
2
2
 
3
- ### master (unreleased)
3
+ ### 0.17.3
4
+
5
+ * Fix `zrange` behavior with negative stop argument
4
6
 
5
7
  ### 0.17.2
6
8
 
@@ -2,5 +2,5 @@
2
2
 
3
3
  # Defines the gem version.
4
4
  class MockRedis
5
- VERSION = '0.17.2'.freeze
5
+ VERSION = '0.17.3'
6
6
  end
@@ -119,7 +119,7 @@ class MockRedis
119
119
  def zrange(key, start, stop, options = {})
120
120
  with_zset_at(key) do |z|
121
121
  start = [start.to_i, -z.sorted.size].max
122
- stop = [stop.to_i, -z.sorted.size].max
122
+ stop = stop.to_i
123
123
  to_response(z.sorted[start..stop] || [], options)
124
124
  end
125
125
  end
@@ -58,6 +58,10 @@ describe '#zrange(key, start, stop [, :with_scores => true])' do
58
58
  @redises.zrange(@key, 1, -5).should == []
59
59
  end
60
60
 
61
+ it 'returns empty list when start is 0 with negative end out of bounds' do
62
+ @redises.zrange(@key, 0, -5).should == []
63
+ end
64
+
61
65
  it 'returns correct subset when start is in bounds with negative end in bounds' do
62
66
  @redises.zrange(@key, 1, -1).should == %w[Adams Jefferson Madison]
63
67
  end
@@ -26,6 +26,7 @@ module TypeCheckingHelper
26
26
  end
27
27
 
28
28
  def args_for_method(method)
29
+ return [] if method.to_s == 'spop'
29
30
  method_arity = @redises.real.method(method).arity
30
31
  if method_arity < 0 # -1 comes from def foo(*args)
31
32
  [1, 2] # probably good enough
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mock_redis
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.17.2
4
+ version: 0.17.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brigade Engineering
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2017-02-09 00:00:00.000000000 Z
12
+ date: 2017-04-05 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rake
@@ -281,7 +281,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
281
281
  version: '0'
282
282
  requirements: []
283
283
  rubyforge_project:
284
- rubygems_version: 2.4.5.1
284
+ rubygems_version: 2.5.2
285
285
  signing_key:
286
286
  specification_version: 4
287
287
  summary: Redis mock that just lives in memory; useful for testing.
@@ -432,4 +432,3 @@ test_files:
432
432
  - spec/support/shared_examples/only_operates_on_zsets.rb
433
433
  - spec/support/shared_examples/sorts_enumerables.rb
434
434
  - spec/transactions_spec.rb
435
- has_rdoc: