Sha256: 6863ece0bf4eb26432b470587bacf070d4bd499c8beb810676755e46a1af427c

Contents?: true

Size: 897 Bytes

Versions: 2

Compression:

Stored size: 897 Bytes

Contents

require 'spec_helper'

describe Dashing do

  it { expect(Dashing).to respond_to :configuration }

  describe '.config' do

    it { expect(Dashing.config).to be_a(Dashing::Configuration) }

  end

  describe '.configure' do

    let(:configuration) { Dashing::Configuration.new }

    before do
      Dashing.stub(:config).and_return(:configuration)
    end

    context 'when block given' do

      it 'yields configuration' do
        Dashing.should_receive(:configure).and_yield(configuration)
        Dashing.configure {|config|}
      end

    end

    context 'when no block given' do

      it 'does nothing' do
        Dashing.configure.should be_nil
      end

    end

  end

  describe '.first_dashboard' do

    let(:dir) { 'foo' }
    let(:dirs) { [dir] }

    before do
      Dir.stub(:[]).and_return(dirs)
    end

    it { expect(Dashing.first_dashboard).to eq(dir) }

  end

end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
dashing-rails-1.0.3 spec/lib/dashing_spec.rb
dashing-rails-1.0.2 spec/lib/dashing_spec.rb