mirror of
https://github.com/HoneyryderChuck/httpx.git
synced 2025-10-07 00:05:02 -04:00
11 lines
204 B
Ruby
11 lines
204 B
Ruby
# frozen_string_literal: true
|
|
|
|
gem "minitest"
|
|
require "minitest/autorun"
|
|
|
|
$HTTPX_DEBUG = !!ENV["HTTPX_DEBUG"]
|
|
|
|
require "httpx"
|
|
|
|
Dir[File.join(".", "test", "support", "**", "*.rb")].each { |f| require f }
|