Sha256: d936090e09bca2416c22f5be8b391a0b32d048837b4dd46b133b2c39d3faafda
Contents?: true
Size: 1.21 KB
Versions: 8
Compression:
Stored size: 1.21 KB
Contents
require 'spec_helper' describe FormatParser::TIFFParser do describe 'is able to parse all the examples from FastImage' do Dir.glob(fixtures_dir + '/TIFF/*.tif').each do |tiff_path| it "is able to parse #{File.basename(tiff_path)}" do parsed = subject.information_from_io(File.open(tiff_path, 'rb')) expect(parsed).not_to be_nil expect(parsed.file_nature).to eq(:image) expect(parsed.file_type).to eq(:tif) expect(parsed.width_px).to be_kind_of(Integer) expect(parsed.width_px).to be > 0 expect(parsed.height_px).to be_kind_of(Integer) expect(parsed.height_px).to be > 0 end end end describe 'is able to parse all the TIFF exif examples from FastImage' do Dir.glob(fixtures_dir + '/exif-orientation-testimages/tiff-*/*.tif').each do |tiff_path| it "is able to parse #{File.basename(tiff_path)}" do parsed = subject.information_from_io(File.open(tiff_path, 'rb')) expect(parsed).not_to be_nil expect(parsed.orientation).to be_kind_of(Symbol) expect(parsed.width_px).to be > 0 expect(parsed.height_px).to be_kind_of(Integer) expect(parsed.height_px).to be > 0 end end end end
Version data entries
8 entries across 8 versions & 1 rubygems