Sha256: fabad66b27a36475678441a204711f591f4a17663eb5cada96a438f82bc9c4c0
Contents?: true
Size: 590 Bytes
Versions: 5
Compression:
Stored size: 590 Bytes
Contents
require 'spec/spec_helper' if Riddle.loaded_version == '0.9.9' describe "Sphinx Status" do before :each do @client = Riddle::Client.new("localhost", 9313) @status = @client.status end it "should return a hash" do @status.should be_a(Hash) end it "should include the uptime, connections, and command_search keys" do # Not checking all values, but ensuring keys are being set correctly @status[:uptime].should_not be_nil @status[:connections].should_not be_nil @status[:command_search].should_not be_nil end end end
Version data entries
5 entries across 5 versions & 1 rubygems