Sha256: 5c4e42dca8759f1bc081b44a7b3d89c16d072e8c6821222501ae0821c20bcb57
Contents?: true
Size: 902 Bytes
Versions: 5
Compression:
Stored size: 902 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 allow(Dashing).to receive(:config).and_return(:configuration) end context 'when block given' do it 'yields configuration' do expect(Dashing).to receive(:configure).and_yield(configuration) Dashing.configure {|config|} end end context 'when no block given' do it { expect(Dashing.configure).to be_nil } end end describe '.first_dashboard' do let(:dir) { 'foo' } let(:dirs) { [dir] } before do allow(Dir).to receive(:[]).and_return(dirs) end it { expect(Dashing.first_dashboard).to eq(dir) } end end
Version data entries
5 entries across 5 versions & 1 rubygems