Sha256: 977a4b03d4e629bffec90d43d957c6ab42b1c3b661a79052a301294136dda1e9
Contents?: true
Size: 1.11 KB
Versions: 29
Compression:
Stored size: 1.11 KB
Contents
require 'spec_helper' describe ChunkyPNG::Datastream do describe '.from_io'do it "should raise an error when loading a file with a bad signature" do filename = resource_file('damaged_signature.png') lambda { ChunkyPNG::Datastream.from_file(filename) }.should raise_error end it "should raise an error if the CRC of a chunk is incorrect" do filename = resource_file('damaged_chunk.png') lambda { ChunkyPNG::Datastream.from_file(filename) }.should raise_error end end describe '#metadata' do it "should load uncompressed tXTt chunks correctly" do filename = resource_file('text_chunk.png') ds = ChunkyPNG::Datastream.from_file(filename) ds.metadata['Title'].should == 'My amazing icon!' ds.metadata['Author'].should == "Willem van Bergen" end it "should load compressed zTXt chunks correctly" do filename = resource_file('ztxt_chunk.png') ds = ChunkyPNG::Datastream.from_file(filename) ds.metadata['Title'].should == 'PngSuite' ds.metadata['Copyright'].should == "Copyright Willem van Schaik, Singapore 1995-96" end end end
Version data entries
29 entries across 28 versions & 4 rubygems