diff options
author | Eileen M. Uchitelle <eileencodes@users.noreply.github.com> | 2017-12-22 15:26:29 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-22 15:26:29 -0500 |
commit | 0e8ac8c44b756b33318fe69df0dcd4759c77d3ed (patch) | |
tree | 82f69768e23c64b43645216530cf81a68be8d6a7 /activestorage/test | |
parent | 1389f4b43f96cd3e0c6e932080d3087853c7eef0 (diff) | |
parent | 7a3a991f6d763e7871cbddda2f1e6e41e6c4c6b8 (diff) | |
download | rails-0e8ac8c44b756b33318fe69df0dcd4759c77d3ed.tar.gz rails-0e8ac8c44b756b33318fe69df0dcd4759c77d3ed.tar.bz2 rails-0e8ac8c44b756b33318fe69df0dcd4759c77d3ed.zip |
Merge pull request #31544 from mrreynolds/activestorage-combined-minimagick-options
Add support for combined MiniMagick transformations
Diffstat (limited to 'activestorage/test')
-rw-r--r-- | activestorage/test/models/variant_test.rb | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/activestorage/test/models/variant_test.rb b/activestorage/test/models/variant_test.rb index 8eced41ee0..2a96dfb142 100644 --- a/activestorage/test/models/variant_test.rb +++ b/activestorage/test/models/variant_test.rb @@ -25,6 +25,20 @@ class ActiveStorage::VariantTest < ActiveSupport::TestCase assert_match(/Gray/, image.colorspace) end + test "center-weighted crop of JPEG blob" do + blob = create_file_blob(filename: "racecar.jpg") + variant = blob.variant(combine_options: { + gravity: "center", + resize: "100x100^", + crop: "100x100+0+0", + }).processed + assert_match(/racecar\.jpg/, variant.service_url) + + image = read_image(variant) + assert_equal 100, image.width + assert_equal 100, image.height + end + test "resized variation of PSD blob" do blob = create_file_blob(filename: "icon.psd", content_type: "image/vnd.adobe.photoshop") variant = blob.variant(resize: "20x20").processed |