mirror of
https://github.com/HoneyryderChuck/httpx.git
synced 2025-10-04 00:00:37 -04:00
18 lines
308 B
Ruby
18 lines
308 B
Ruby
# frozen_string_literal: true
|
|
|
|
gem "minitest"
|
|
require "minitest/autorun"
|
|
|
|
if ENV.key?("PARALLEL")
|
|
require "minitest/hell"
|
|
class Minitest::Test
|
|
parallelize_me!
|
|
end
|
|
end
|
|
|
|
$HTTPX_DEBUG = !!ENV["HTTPX_DEBUG"]
|
|
|
|
require "httpx"
|
|
|
|
Dir[File.join(".", "test", "support", "**", "*.rb")].each { |f| require f }
|