Sha256: 3448ef12ba33e54ae5ff6494a545ea07679b8a0e805aaeb5214c33df63d6badd

Contents?: true

Size: 768 Bytes

Versions: 1

Compression:

Stored size: 768 Bytes

Contents

require 'spec_helper'

describe do
  let(:test_class) { Class.new { extend M3u8 } }

  it 'should parse attributes to hash' do
    line = %(TEST-ID="Help",URI="http://test",ID=33\n)
    hash = test_class.parse_attributes line
    expect(hash['TEST-ID']).to eq 'Help'
    expect(hash['URI']).to eq 'http://test'
    expect(hash['ID']).to eq '33'
  end

  it 'should parse yes/no string' do
    value = 'YES'
    expect(test_class.parse_yes_no(value)).to be true
    value = 'NO'
    expect(test_class.parse_yes_no(value)).to be false
  end

  describe '#to_yes_no' do
    it 'converts true to YES' do
      expect(test_class.to_yes_no(true)).to eq('YES')
    end

    it 'converts false to NO' do
      expect(test_class.to_yes_no(false)).to eq('NO')
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
m3u8-0.7.0 spec/lib/m3u8_spec.rb