Sha256: a4b860c0575bc26c8863d0948020cf9b9474e35abdf60873dae14704ede2f524

Contents?: true

Size: 1.16 KB

Versions: 2

Compression:

Stored size: 1.16 KB

Contents

require File.expand_path(File.dirname(__FILE__) + '/../spec_helper')

describe "Analytical::Chartbeat::Api" do
  before(:each) do
    @parent = mock('api', :options=>{:chartbeat=>{:key=>1234, :domain =>'test.com'}})
  end
  describe 'on initialize' do
    it 'should set the command_location' do
      a = Analytical::Chartbeat::Api.new :parent=>@parent, :key=>1234
      a.tracking_command_location.should == [:head_prepend, :body_append]
    end
    it 'should set the options' do
      a = Analytical::Chartbeat::Api.new :parent=>@parent, :key=>12345, :domain =>'abcdef.com'
      a.options.should == {:key=>12345, :domain => 'abcdef.com', :parent=>@parent}
    end
  end
  describe '#init_javascript' do
    it 'should return the init javascript' do
      @api = Analytical::Chartbeat::Api.new :parent=>@parent, :key=>12345, :domain =>'abcdef.com'
      @api.init_javascript(:head_prepend).should =~ /_sf_startpt=\(new.Date\(\)\)\.getTime\(\);/
      @api.init_javascript(:head_append).should == ''
      @api.init_javascript(:body_prepend).should == ''
      @api.init_javascript(:body_append).should =~ /_sf_async_config=\{uid:12345,.*domain:"abcdef\.com"\};/
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
analytical-1.8.0 spec/analytical/chartbeat_spec.rb
analytical-1.7.0 spec/analytical/chartbeat_spec.rb