diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2018-07-28 03:33:00 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-28 03:33:00 +0200 |
commit | 0fb0037ca7ea9910b490818a1cc13f4005ba6134 (patch) | |
tree | 14e6979b62c92c46d81f8d20315baf9686f3fa17 /spec | |
parent | 3c35b34b612c210c97ce8cffda33798ffa8f22e8 (diff) |
Resize images by area instead of fixed dimensions (#8083)
To improve the way super tall or super ride images are treated, the numbers remain the same, 1280x1280 and 400x400, but if an image is less in one dimension than the other, the other can become larger Thanks to @WAHa_06x36@mastodon.social for the tip
Diffstat (limited to 'spec')
-rw-r--r-- | spec/models/media_attachment_spec.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/models/media_attachment_spec.rb b/spec/models/media_attachment_spec.rb index d2230b6d0..cb1cee518 100644 --- a/spec/models/media_attachment_spec.rb +++ b/spec/models/media_attachment_spec.rb @@ -129,9 +129,9 @@ RSpec.describe MediaAttachment, type: :model do expect(media.file.meta["original"]["width"]).to eq 600 expect(media.file.meta["original"]["height"]).to eq 400 expect(media.file.meta["original"]["aspect"]).to eq 1.5 - expect(media.file.meta["small"]["width"]).to eq 400 - expect(media.file.meta["small"]["height"]).to eq 267 - expect(media.file.meta["small"]["aspect"]).to eq 400.0/267 + expect(media.file.meta["small"]["width"]).to eq 490 + expect(media.file.meta["small"]["height"]).to eq 327 + expect(media.file.meta["small"]["aspect"]).to eq 490.0/327 end end |