summaryrefslogtreecommitdiff
path: root/vendor/plugins/thinking-sphinx/features/retry_stale_indexes.feature
diff options
context:
space:
mode:
authorhukl <contact@smyck.org>2011-02-10 14:19:00 +0100
committerhukl <contact@smyck.org>2011-02-10 14:19:00 +0100
commit7379daad1c73bd3610ed296436250b417ac3673d (patch)
tree04f722efc678de9d3aa5bf8f1c96e3be33b18bc4 /vendor/plugins/thinking-sphinx/features/retry_stale_indexes.feature
parent91633ac4419d839661e35ae8f2efe5c9089cfb67 (diff)
removed thinking_sphinx plugin and replaced it with gem.
also tuned dependencies
Diffstat (limited to 'vendor/plugins/thinking-sphinx/features/retry_stale_indexes.feature')
-rw-r--r--vendor/plugins/thinking-sphinx/features/retry_stale_indexes.feature24
1 files changed, 0 insertions, 24 deletions
diff --git a/vendor/plugins/thinking-sphinx/features/retry_stale_indexes.feature b/vendor/plugins/thinking-sphinx/features/retry_stale_indexes.feature
deleted file mode 100644
index a14f43a3..00000000
--- a/vendor/plugins/thinking-sphinx/features/retry_stale_indexes.feature
+++ /dev/null
@@ -1,24 +0,0 @@
1Feature: Manually updating Sphinx indexes to handle uncaught deletions
2 In order to keep indexes as up to date as possible
3 Thinking Sphinx
4 Should automatically update the indexes and retry the search if it gets a nil result
5
6 Scenario: Changing retry_stale settings
7 Given Sphinx is running
8 And I am searching on gammas
9 Then I should not get 0 results
10
11 When I set retry stale to false
12 And I set per page to 1
13 And I order by "sphinx_internal_id ASC"
14 And I destroy gamma one without callbacks
15 Then I should get a single result of nil
16
17 When I set retry stale to 1
18 Then I should get a single gamma result with a name of two
19
20 When I destroy gamma two without callbacks
21 Then I should get a single result of nil
22
23 When I set retry stale to true
24 Then I should get a single gamma result with a name of three