mirror of
https://github.com/TracksApp/tracks.git
synced 2026-03-01 02:20:16 +01:00
10 lines
184 B
Ruby
10 lines
184 B
Ruby
# typed: true
|
|
require 'minitest/stub_const'
|
|
|
|
module StubSiteConfigHelper
|
|
def stub_site_config
|
|
Object.stub_const(:SITE_CONFIG, SITE_CONFIG.clone) do
|
|
yield
|
|
end
|
|
end
|
|
end
|