Sha256: 26960329b456fb53bf92f5831b0f8f44000738193e4f6264c9e37260e53e8970
Contents?: true
Size: 1.61 KB
Versions: 1
Compression:
Stored size: 1.61 KB
Contents
require 'spec_helper' describe Poms::Fields do let(:poms_data) { JSON.parse File.read('spec/fixtures/poms_broadcast.json') } describe '#title' do it 'returns the first MAIN title' do expect(described_class.title(poms_data)).to eq('VRijland') end end describe '#description' do it 'returns the first MAIN description' do expect(described_class.description(poms_data)).to eq("Li biedt Barry \ een baantje aan bij de uitdragerij en vraagt zich meteen af of dat wel zo slim \ was. Timon en Joep zien de criminele organisatie de Rijland Angels. Timon wil \ naar hun loods, maar is dat wel een goed idee?") end end describe '#first_image_id' do it 'returns the id of the first image' do expect(described_class.first_image_id(poms_data)).to eq('184169') end end describe '#rev' do it 'returns the current Poms revision' do expect(described_class.rev(poms_data)).to eq(60) end end describe '#odi_streams' do it 'returns an array of stream types' do expect(described_class.odi_streams(poms_data)).to match_array( %w(adaptive h264_sb h264_bb h264_std wvc1_std wmv_sb wmv_bb)) end end describe '#available_until' do it 'returns the enddate of the INTERNETVOD prediction' do expect(described_class.available_until(poms_data)) .to eq('Sat, 27 Jun 2015 07:12:48 +0200') end it 'returns nil if the INTERNETVOD has no publishStop' do expect( described_class.available_until( 'predictions' => [ { 'state' => 'REALIZED', 'platform' => 'INTERNETVOD' }])) .to be_nil end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
poms-1.2.1 | spec/lib/poms/fields_spec.rb |