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

Version Path
looksist-0.3.12 features/bucket_lookup.feature
looksist-0.3.11 features/bucket_lookup.feature
looksist-0.3.10 features/bucket_lookup.feature
looksist-0.3.9 features/bucket_lookup.feature
looksist-0.3.8 features/bucket_lookup.feature
looksist-0.3.7 features/bucket_lookup.feature
looksist-0.3.6 features/bucket_lookup.feature
looksist-0.3.5 features/bucket_lookup.feature
looksist-0.3.4 features/bucket_lookup.feature
looksist-0.3.3 features/bucket_lookup.feature
looksist-0.3.2 features/bucket_lookup.feature
looksist-0.3.1 features/bucket_lookup.feature
looksist-0.3.0 features/bucket_lookup.feature
looksist-0.2.10 features/bucket_lookup.feature
looksist-0.2.9 features/bucket_lookup.feature
looksist-0.2.8 features/bucket_lookup.feature
looksist-0.2.7 features/bucket_lookup.feature
looksist-0.2.6 features/bucket_lookup.feature
looksist-0.2.5 features/bucket_lookup.feature
looksist-0.2.4 features/bucket_lookup.feature