Sha256: e3c7043a447436ddd539a5c3216c12ba7e5f222c6325fed5c0d4437c4f061b0c
Contents?: true
Size: 446 Bytes
Versions: 8
Compression:
Stored size: 446 Bytes
Contents
RSpec.describe Magick::Image, '#ping' do it 'returns an image from the source, omitting pixel data' do res = Magick::Image.ping(IMAGES_DIR+'/Button_0.gif') expect(res).to be_instance_of(Array) image = res.first expect(image).to be_instance_of(Magick::Image) expect(image.format).to eq 'GIF' expect(image.columns).to eq 127 expect(image.rows).to eq 120 expect(image.filename).to match(/Button_0.gif/) end end
Version data entries
8 entries across 8 versions & 3 rubygems