Sha256: 90bcc44a230f08db61357068afcb33a2ba7a0dabe5836d66e09aa8d7e588bd0b

Contents?: true

Size: 815 Bytes

Versions: 3

Compression:

Stored size: 815 Bytes

Contents

require 'spec_helper'

describe FormatParser::FDXParser do
  describe 'is able to parse the sample file' do
    Dir.glob(fixtures_dir + '/XML/*.fdx').each do |fdx_path|
      it "is able to parse #{File.basename(fdx_path)}" do
        parsed = subject.information_from_io(File.open(fdx_path, 'rb'))
        expect(parsed).not_to be_nil
        expect(parsed.file_nature).to eq(:document)
        expect(parsed.file_type).to eq(:fdx)
        expect(parsed.document_type).to eq(:script)
      end
    end
  end
  
  describe 'does not parse other XML files as FDX' do
    Dir.glob(fixtures_dir + '/*.svg').each do |svg_path|
      it 'returns nil when parsing a non-fdx xml file' do
        parsed = subject.information_from_io(File.open(svg_path, 'rb'))
        expect(parsed).to eq(nil)
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
format_parser-0.1.7 spec/parsers/fdx_parser_spec.rb
format_parser-0.1.6 spec/parsers/fdx_parser_spec.rb
format_parser-0.1.5 spec/parsers/fdx_parser_spec.rb