mirror of
https://github.com/discourse/discourse.git
synced 2026-08-06 06:24:48 +08:00
7 lines
164 B
Ruby
Vendored
7 lines
164 B
Ruby
Vendored
# frozen_string_literal: true
|
|
|
|
module FastImageHelpers
|
|
def stub_image_size(width: nil, height: nil)
|
|
FastImage.stubs(:size).returns([width, height])
|
|
end
|
|
end
|