You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

26 lines
939 B

require 'spec_helper'
require 'squib/args/transform'
describe Squib::Args::Box do
subject(:trans) { Squib::Args::Transform.new }
let(:expected_defaults) { { x: [0], y: [0], crop_width: [:native], crop_height: [:native] } }
context 'validation' do
it 'replaces with deck width and height' do
args = { crop_width: :deck, crop_height: :deck }
deck = OpenStruct.new(width: 123, height: 456, size: 1)
trans = Squib::Args::Transform.new
trans.extract! args, deck
expect(trans).to have_attributes(crop_width: [123], crop_height: [456])
end
it 'has radius override x_radius and y_radius' do
args = { crop_corner_x_radius: 1, crop_corner_y_radius: 2, crop_corner_radius: 3 }
deck = OpenStruct.new(width: 123, height: 456, size: 2)
trans.extract! args, deck
expect(trans).to have_attributes(crop_corner_x_radius: [3, 3], crop_corner_y_radius: [3, 3])
end
end
end