Sha256: 50e0db729d9df635aea3579c668e7c2da5b4b10fdff9b816a5afaa978f7f56f2

Contents?: true

Size: 328 Bytes

Versions: 1

Compression:

Stored size: 328 Bytes

Contents

require 'spec_helper'

describe Squib::Deck do

  context '#hint' do

    it 'sets hinting to conf' do
      mock_conf = double(Squib::Conf)
      expect(mock_conf).to receive(:text_hint=).with(:cyan).once
      Squib::Deck.new do
        @conf = mock_conf
        hint text: :cyan
      end
    end

  end

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
squib-0.6.0 spec/api/api_settings_spec.rb