Files
adamantium/spec/spec_helper.rb
2023-06-14 22:08:39 +10:00

17 lines
319 B
Ruby

# frozen_string_literal: true
require "pathname"
require "warning"
SPEC_ROOT = Pathname(__dir__).realpath.freeze
ENV["HANAMI_ENV"] ||= "test"
require "hanami/prepare"
require "timecop"
require_relative "support/rspec"
require_relative "support/feature_loader"
Gem.path.each do |path|
Warning.ignore(//, path)
end