aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLouise Crow <louise.crow@gmail.com>2013-07-29 15:37:43 +0100
committerLouise Crow <louise.crow@gmail.com>2013-07-29 15:37:43 +0100
commita73ffdc2a6801961ce2b5c9719651231dd484021 (patch)
tree8d96b7bb19d269b065b34f23940a1ff5302e3c74
parentd00834ef5b8e834cedf5c0ef22c19ae52c5ced0a (diff)
Prepare the xapian database before running tests that rely on it existing.
-rw-r--r--spec/models/xapian_spec.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/spec/models/xapian_spec.rb b/spec/models/xapian_spec.rb
index c40334142..7aab9cdc6 100644
--- a/spec/models/xapian_spec.rb
+++ b/spec/models/xapian_spec.rb
@@ -373,6 +373,11 @@ end
# I would expect ActsAsXapian to have some tests under vendor/plugins/acts_as_xapian, but
# it looks like this is not the case. Putting a test here instead.
describe ActsAsXapian::Search, "#words_to_highlight" do
+ before(:each) do
+ load_raw_emails_data
+ get_fixtures_xapian_index
+ end
+
it "should return a list of words used in the search" do
s = ActsAsXapian::Search.new([PublicBody], "albatross words", :limit => 100)
s.words_to_highlight.should == ["albatross", "words"]