How to test ThinkingSphinx using RSpec
问题 I have a class method in a model that calls thinking_sphinx's search() method. I need to check this class method. I want to start, index or stop sphinx in my rspec test cases. I am trying with this piece of code. before(:all) do ThinkingSphinx::Test.start end after(:all) do ThinkingSphinx::Test.stop end and with this code in each test case before I fire the search query ThinkingSphinx::Test.index but still after I fire the search query, it gives me empty results though exact matches are there