1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
RSpec.describe Magick::Image, "#blend" do
it "works" do
image = described_class.new(20, 20)
image2 = described_class.new(20, 20) { |options| options.background_color = 'black' }
expect { image.blend(image2, 0.25) }.not_to raise_error
result = image.blend(image2, 0.25)
Magick::GravityType.values do |gravity|
expect { image.blend(image2, 0.25, 0.75, gravity) }.not_to raise_error
expect { image.blend(image2, 0.25, 0.75, gravity, 10) }.not_to raise_error
expect { image.blend(image2, 0.25, 0.75, gravity, 10, 10) }.not_to raise_error
end
expect(result).to be_instance_of(described_class)
expect { image.blend(image2, '25%') }.not_to raise_error
expect { image.blend(image2, 0.25, 0.75) }.not_to raise_error
expect { image.blend(image2, '25%', '75%') }.not_to raise_error
expect { image.blend }.to raise_error(ArgumentError)
expect { image.blend(image2, 'x') }.to raise_error(ArgumentError)
expect { image.blend(image2, 0.25, []) }.to raise_error(TypeError)
expect { image.blend(image2, 0.25, 0.75, 'x') }.to raise_error(TypeError)
expect { image.blend(image2, 0.25, 0.75, Magick::CenterGravity, 'x') }.to raise_error(TypeError)
expect { image.blend(image2, 0.25, 0.75, Magick::CenterGravity, 10, []) }.to raise_error(TypeError)
image2.destroy!
expect { image.blend(image2, '25%') }.to raise_error(Magick::DestroyedImageError)
end
it 'accepts an ImageList argument' do
image = described_class.new(20, 20)
image_list = Magick::ImageList.new
image_list.new_image(10, 10)
expect { image.blend(image_list, 0.25) }.not_to raise_error
expect { image.blend(image_list, 0.25, 0.75, Magick::NorthWestGravity) }.not_to raise_error
expect { image.blend(image_list, 0.25, 0.75, Magick::NorthWestGravity, 10) }.not_to raise_error
expect { image.blend(image_list, 0.25, 0.75, Magick::NorthWestGravity, 10, 10) }.not_to raise_error
end
end
|