discourse/spec/support/fast_image_helpers.rb
2021-10-19 17:12:29 +05:30

8 lines
164 B
Ruby

# frozen_string_literal: true
module FastImageHelpers
def stub_image_size(width: nil, height: nil)
FastImage.stubs(:size).returns([width, height])
end
end