Sha256: 63de0c00eb9cfcf98ea68bd1c5fbdb7759c660d508f2dede91343c7741bdfa3a
Contents?: true
Size: 505 Bytes
Versions: 13
Compression:
Stored size: 505 Bytes
Contents
require 'spec_helper' describe ChunkyPNG::Canvas do describe '.from_data_url' do it "should import an image from a data URL" do data_url = reference_canvas('operations').to_data_url ChunkyPNG::Canvas.from_data_url(data_url).should == reference_canvas('operations') end it "should raise an exception if the string is not a proper data URL" do lambda { ChunkyPNG::Canvas.from_data_url('whatever') }.should raise_error(ChunkyPNG::SignatureMismatch) end end end
Version data entries
13 entries across 12 versions & 4 rubygems