aboutsummaryrefslogtreecommitdiffstats
path: root/activestorage/test/models
diff options
context:
space:
mode:
authorGeorge Claghorn <george@basecamp.com>2018-01-02 07:19:39 -0500
committerGeorge Claghorn <george@basecamp.com>2018-01-02 07:20:23 -0500
commit921b877c2fd51cc0abdcf0ef6ca3528808047056 (patch)
treef9fe7ee526880d37c99130c57da9bc3e9ca844c2 /activestorage/test/models
parent13afd2cfdc8c83037b0739ca8a072ac4badb8afd (diff)
downloadrails-921b877c2fd51cc0abdcf0ef6ca3528808047056.tar.gz
rails-921b877c2fd51cc0abdcf0ef6ca3528808047056.tar.bz2
rails-921b877c2fd51cc0abdcf0ef6ca3528808047056.zip
Restore support for the -layers transformation
Diffstat (limited to 'activestorage/test/models')
-rw-r--r--activestorage/test/models/variant_test.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/activestorage/test/models/variant_test.rb b/activestorage/test/models/variant_test.rb
index 2a96dfb142..7157bfac3a 100644
--- a/activestorage/test/models/variant_test.rb
+++ b/activestorage/test/models/variant_test.rb
@@ -50,6 +50,14 @@ class ActiveStorage::VariantTest < ActiveSupport::TestCase
assert_equal 20, image.height
end
+ test "optimized variation of GIF blob" do
+ blob = create_file_blob(filename: "image.gif", content_type: "image/gif")
+
+ assert_nothing_raised do
+ blob.variant(layers: "Optimize").processed
+ end
+ end
+
test "variation of invariable blob" do
assert_raises ActiveStorage::Blob::InvariableError do
create_file_blob(filename: "report.pdf", content_type: "application/pdf").variant(resize: "100x100")