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 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
|
RSpec.describe Magick do
describe '::Magick_features' do
it 'works' do
expect(Magick::Magick_features).to be_instance_of(String)
end
end
describe '::OpaqueAlpha' do
it 'works' do
expect(Magick::OpaqueAlpha).to eq(Magick::QuantumRange)
end
end
describe '::TransparentAlpha' do
it 'works' do
expect(Magick::TransparentAlpha).to eq(0)
end
end
describe '::PercentGeometry' do
it 'works' do
expect(Magick::PercentGeometry).to be_kind_of(Magick::GeometryValue)
expect(Magick::PercentGeometry.to_s).to eq('PercentGeometry')
expect(Magick::PercentGeometry.to_i).to eq(1)
end
end
describe '::AspectGeometry' do
it 'works' do
expect(Magick::AspectGeometry).to be_kind_of(Magick::GeometryValue)
expect(Magick::AspectGeometry.to_s).to eq('AspectGeometry')
expect(Magick::AspectGeometry.to_i).to eq(2)
end
end
describe '::LessGeometry' do
it 'works' do
expect(Magick::LessGeometry).to be_kind_of(Magick::GeometryValue)
expect(Magick::LessGeometry.to_s).to eq('LessGeometry')
expect(Magick::LessGeometry.to_i).to eq(3)
end
end
describe '::GreaterGeometry' do
it 'works' do
expect(Magick::GreaterGeometry).to be_kind_of(Magick::GeometryValue)
expect(Magick::GreaterGeometry.to_s).to eq('GreaterGeometry')
expect(Magick::GreaterGeometry.to_i).to eq(4)
end
end
describe '::AreaGeometry' do
it 'works' do
expect(Magick::AreaGeometry).to be_kind_of(Magick::GeometryValue)
expect(Magick::AreaGeometry.to_s).to eq('AreaGeometry')
expect(Magick::AreaGeometry.to_i).to eq(5)
end
end
describe '::MinimumGeometry' do
it 'works' do
expect(Magick::MinimumGeometry).to be_kind_of(Magick::GeometryValue)
expect(Magick::MinimumGeometry.to_s).to eq('MinimumGeometry')
expect(Magick::MinimumGeometry.to_i).to eq(6)
end
end
if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new('3.1.0')
describe 'Ractor' do
it 'is supported' do
expect do
r = Ractor.new do
img = Magick::ImageList.new
img.new_image(200, 200, Magick::GradientFill.new(100, 50, 100, 50, 'khaki1', 'turquoise'))
img.resize(20, 20)
end
r.take
end.not_to raise_error
expect do
r = Ractor.new do
img = Magick::ImageList.new
img.new_image(40, 40, Magick::HatchFill.new('white', 'lightcyan2'))
gc = Magick::Draw.new
gc.font_weight(Magick::NormalWeight)
gc.font_style(Magick::NormalStyle)
gc.text(5, 20, "'20,20'")
gc.draw(img)
end
r.take
end.not_to raise_error
unless RUBY_PLATFORM.include?('mingw')
# Skip because it causes "`init_formats': unable to register image format 'DMR'" error on Windows
expect do
r = Ractor.new do
Magick.formats # rubocop:disable RSpec/DescribedClass
end
r.take
end.not_to raise_error
end
end
end
end
end
|