Sha256: 7cc6e339338507d4f6104b8fc0cf129202cd33f43b1a3803634033f263530b28
Contents?: true
Size: 1.8 KB
Versions: 2
Compression:
Stored size: 1.8 KB
Contents
require File.expand_path(File.dirname(__FILE__) + '/spec_helper') require 'ostruct' describe "Analytical" do before(:each) do rails_env = mock('rails environment', :'production?'=>true, :'development?'=>false) Rails.stub!(:env).and_return(rails_env) File.stub!(:'exists?').and_return(false) end describe 'on initialization' do class DummyForInit extend Analytical def request; OpenStruct.new(:'ssl?'=>true); end def self.helper_method(*a); end end it 'should have the default options' do DummyForInit.analytical d = DummyForInit.new.analytical d.options[:modules].should == [] d.options[:development_modules].should == [:console] d.options[:disable_if].call.should be_false end it 'should open the initialization file' do File.should_receive(:'exists?').with("#{RAILS_ROOT}/config/analytical.yml").and_return(true) DummyForInit.analytical DummyForInit.analytical_options[:google].should == {:key=>'google_12345'} DummyForInit.analytical_options[:kiss_metrics].should == {:key=>'kiss_metrics_12345'} DummyForInit.analytical_options[:clicky].should == {:key=>'clicky_12345'} end describe 'in production mode' do before(:each) do Rails.env.stub!(:production?).and_return(true) end it 'should start with no modules' do Analytical::Api.should_not_receive(:include) DummyForInit.analytical DummyForInit.new.analytical.options[:modules] = [] end end describe 'in development mode' do before(:each) do Rails.env.stub!(:production?).and_return(false) end it 'should start with no modules' do DummyForInit.analytical DummyForInit.new.analytical.options[:modules] = [:console] end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
analytical-0.6.0 | spec/analytical_spec.rb |
analytical-0.5.0 | spec/analytical_spec.rb |