Sha256: 1c03c02174d84f268c0f177c69a0a40bb88d796572ba7eaba41f0b5cb05c4b69

Contents?: true

Size: 446 Bytes

Versions: 6

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

6 entries across 6 versions & 1 rubygems

Version Path
rmagick-4.1.0.rc2 spec/rmagick/image/ping_spec.rb
rmagick-4.1.0.rc1 spec/rmagick/image/ping_spec.rb
rmagick-4.0.0 spec/rmagick/image/ping_spec.rb
rmagick-3.2.0 spec/rmagick/image/ping_spec.rb
rmagick-3.1.0 spec/rmagick/image/ping_spec.rb
rmagick-3.0.0 spec/rmagick/image/ping_spec.rb