Sha256: 8efcfb94b802573704027680f17265e6a2b5ceb4ac83f51324b5993f886b5b6c

Contents?: true

Size: 995 Bytes

Versions: 7

Compression:

Stored size: 995 Bytes

Contents

require 'spec_helper'

describe Kuhsaft::AssetBrick, type: :model do

  let :asset_brick do
    Kuhsaft::AssetBrick.new
  end

  describe '#valid' do
    before do
      asset_brick.valid?
    end

    context 'without a #caption' do
      it 'has an error' do
        expect(asset_brick.errors[:caption].count).to eq(1)
      end
    end
  end

  describe '#bricks' do
    it 'can not have childs' do
      expect(asset_brick).not_to respond_to(:bricks)
    end
  end

  describe '.styles' do
    it 'returns the available link styles' do
      expect(Kuhsaft::AssetBrick.styles).to eq(%w(pdf word excel button))
    end
  end

  describe '#to_style_class' do
    it 'includes the link style' do
      allow(asset_brick).to receive(:link_style).and_return('pdf')
      expect(asset_brick.to_style_class).to eq('kuhsaft-asset-brick pdf')
    end
  end

  describe '#user_can_add_childs?' do
    it 'returns false' do
      expect(asset_brick.user_can_add_childs?).to be_falsey
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
kuhsaft-2.6.3 spec/models/asset_brick_spec.rb
kuhsaft-2.6.2 spec/models/asset_brick_spec.rb
kuhsaft-2.6.1 spec/models/asset_brick_spec.rb
kuhsaft-2.5.2 spec/models/asset_brick_spec.rb
kuhsaft-2.6.0 spec/models/asset_brick_spec.rb
kuhsaft-2.5.1 spec/models/asset_brick_spec.rb
kuhsaft-2.5.0 spec/models/asset_brick_spec.rb