This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/spec/fabricators/optimized_image_fabricator.rb
Guo Xiang Tan b72cec188a Fix the build.
Follow up to df1e6eed5a.
2019-05-23 16:11:50 +08:00

17 lines
378 B
Ruby

# frozen_string_literal: true
Fabricator(:optimized_image) do
upload
sha1 "86f7e437faa5a7fce15d1ddcb9eaeaea377667b8"
extension ".png"
width 100
height 200
version OptimizedImage::VERSION
after_build do |optimized_image, _|
unless optimized_image.url
optimized_image.url = Discourse.store.get_path_for_optimized_image(optimized_image)
end
end
end