Sha256: 0a12b4305a325dbb4fd475a28d095db2a5a1bb7dc7c4d51d7c5205c8ab8fce34
Contents?: true
Size: 655 Bytes
Versions: 26
Compression:
Stored size: 655 Bytes
Contents
@bucket_lookup Feature: I should be able to look up all keys in a bucket by pattern so that I can power drop downs with them. Scenario: Lookup keys in a bucket by pattern Given I have the following keys setup in Redis | key | value | | ids/1 | ID 1 | | ids/2 | ID 2 | | ids/3 | ID 3 | | ids/4 | ID 4 | | non_matching_ids/4 | ID 5 | When I ask looksist to lookup by pattern "id" Then I see the response to be the following | key | value | | 1 | ID 1 | | 2 | ID 2 | | 3 | ID 3 | | 4 | ID 4 |
Version data entries
26 entries across 26 versions & 1 rubygems