Sha256: 80713e49e64c965b03d8b4c7be587ff4c3291952af62f468df6a36e8ddd8bd9d

Contents?: true

Size: 1.22 KB

Versions: 5

Compression:

Stored size: 1.22 KB

Contents

require 'spec/spec_helper'

describe Riddle::Controller do
  describe '#sphinx_version' do
    before :each do
      @controller = Riddle::Controller.new stub('controller'), 'sphinx.conf'
    end
    
    it "should return 1.10 if using 1.10-beta" do
      @controller.stub!(:` => 'Sphinx 1.10-beta (r2420)')
      @controller.sphinx_version.should == '1.10-beta'
    end
    
    it "should return 0.9.9 if using 0.9.9" do
      @controller.stub!(:` => 'Sphinx 0.9.9-release (r2117)')
      @controller.sphinx_version.should == '0.9.9'
    end
    
    it "should return 0.9.9 if using 0.9.9 rc2" do
      @controller.stub!(:` => 'Sphinx 0.9.9-rc2 (r1785)')
      @controller.sphinx_version.should == '0.9.9'
    end
    
    it "should return 0.9.9 if using 0.9.9 rc1" do
      @controller.stub!(:` => 'Sphinx 0.9.9-rc1 (r1566)')
      @controller.sphinx_version.should == '0.9.9'
    end
    
    it "should return 0.9.8 if using 0.9.8.1" do
      @controller.stub!(:` => 'Sphinx 0.9.8.1-release (r1533)')
      @controller.sphinx_version.should == '0.9.8'
    end
    
    it "should return 0.9.8 if using 0.9.8" do
      @controller.stub!(:` => 'Sphinx 0.9.8-release (r1371)')
      @controller.sphinx_version.should == '0.9.8'
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
riddle-1.2.2 spec/riddle/controller_spec.rb
riddle-1.2.1 spec/riddle/controller_spec.rb
riddle-1.2.0 spec/riddle/controller_spec.rb
riddle-1.1.0 spec/riddle/controller_spec.rb
riddle-1.0.12 spec/riddle/controller_spec.rb