mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
46db463d06
This fixes following warnings: ``` test/models/variant_test.rb:11: warning: ambiguous first argument; put parentheses or a space even after `/' operator lib/active_storage/attached/macros.rb:63: warning: instance variable @active_storage_attached_highlights not initialized lib/active_storage/attached/macros.rb:25: warning: instance variable @active_storage_attached_avatar not initialized ```
12 lines
519 B
Ruby
12 lines
519 B
Ruby
require "service/shared_service_tests"
|
|
|
|
class ActiveStorage::Service::DiskServiceTest < ActiveSupport::TestCase
|
|
SERVICE = ActiveStorage::Service::DiskService.new(root: File.join(Dir.tmpdir, "active_storage"))
|
|
|
|
include ActiveStorage::Service::SharedServiceTests
|
|
|
|
test "url generation" do
|
|
assert_match(/rails\/active_storage\/disk\/.*\/avatar\.png\?.+disposition=inline/,
|
|
@service.url(FIXTURE_KEY, expires_in: 5.minutes, disposition: :inline, filename: "avatar.png", content_type: "image/png"))
|
|
end
|
|
end
|