Sha256: 7bfbd4431696b0deec1dd4c3b7a82a047300974fc4566608eb6eb5026325166b
Contents?: true
Size: 919 Bytes
Versions: 19
Compression:
Stored size: 919 Bytes
Contents
# frozen_string_literal: true describe SirTrevorRails::Blocks::FeaturedPagesBlock do subject { described_class.new({ type: '', data: block_data }, page) } let(:page) { FactoryBot.create(:feature_page) } let(:block_data) { {} } describe '#items' do it 'is the array of items with display set to true' do block_data[:item] = { '0': { id: 'abc123', display: 'true' }, '1': { id: 'xyz321', display: 'false' } } expect(subject.items.length).to eq 1 expect(subject.items).to eq([{ id: 'abc123', display: 'true' }]) end it 'is an empty array when there is no browse category' do expect(subject.items).to eq([]) end end describe '#as_json' do context 'when no items are present' do it 'returns an empty items value' do block_data[:item] = nil expect(subject.as_json[:data]).to include item: {} end end end end
Version data entries
19 entries across 19 versions & 1 rubygems