mirror of
https://github.com/TracksApp/tracks.git
synced 2025-09-21 21:40:48 +02:00
9 lines
170 B
Ruby
9 lines
170 B
Ruby
require 'minitest/stub_const'
|
|
|
|
module StubSiteConfigHelper
|
|
def stub_site_config
|
|
Object.stub_const(:SITE_CONFIG, SITE_CONFIG.clone) do
|
|
yield
|
|
end
|
|
end
|
|
end
|