aboutsummaryrefslogtreecommitdiffstats
path: root/activestorage/test/test_helper.rb
diff options
context:
space:
mode:
authorGeorge Claghorn <george@basecamp.com>2018-03-05 11:53:31 -0500
committerGeorge Claghorn <george@basecamp.com>2018-03-05 11:54:43 -0500
commitccac681122db9747fec9512076772bca345e24b9 (patch)
tree9648be7aa60c62b44d74e898b7a9f9888e6d7789 /activestorage/test/test_helper.rb
parent9cc0c1aaf4d35b79055471f1a7ef0dba692b366d (diff)
downloadrails-ccac681122db9747fec9512076772bca345e24b9.tar.gz
rails-ccac681122db9747fec9512076772bca345e24b9.tar.bz2
rails-ccac681122db9747fec9512076772bca345e24b9.zip
Generate root-relative paths in Active Storage disk service URL methods
Fixes #32129.
Diffstat (limited to 'activestorage/test/test_helper.rb')
-rw-r--r--activestorage/test/test_helper.rb3
1 files changed, 0 insertions, 3 deletions
diff --git a/activestorage/test/test_helper.rb b/activestorage/test/test_helper.rb
index 98fa44a604..aaf1d452ea 100644
--- a/activestorage/test/test_helper.rb
+++ b/activestorage/test/test_helper.rb
@@ -7,7 +7,6 @@ require "bundler/setup"
require "active_support"
require "active_support/test_case"
require "active_support/testing/autorun"
-require "webmock/minitest"
require "mini_magick"
begin
@@ -42,8 +41,6 @@ ActiveStorage.verifier = ActiveSupport::MessageVerifier.new("Testing")
class ActiveSupport::TestCase
self.file_fixture_path = File.expand_path("fixtures/files", __dir__)
- setup { WebMock.allow_net_connect! }
-
private
def create_blob(data: "Hello world!", filename: "hello.txt", content_type: "text/plain")
ActiveStorage::Blob.create_after_upload! io: StringIO.new(data), filename: filename, content_type: content_type