027cfc02b1
The app is not loaded by rails/commands if there are additional arguments to "rails test"
16 lines
394 B
Ruby
Executable File
16 lines
394 B
Ruby
Executable File
#!/usr/bin/env ruby
|
|
APP_PATH = File.expand_path("../config/application", __dir__)
|
|
|
|
require_relative "../lib/fizzy"
|
|
Fizzy.configure_bundle
|
|
|
|
require_relative "../config/boot"
|
|
|
|
require "rails/commands"
|
|
|
|
if Fizzy.saas? && ENV["RAILS_ENV"] == "test"
|
|
# the app is not loaded by rails/commands if there are additional arguments to "rails test"
|
|
require APP_PATH
|
|
Fizzy::Saas.append_test_paths
|
|
end
|