blob: 50ae829bf88463c2e3063e9bb56da39671997422 (
plain)
1
2
3
4
5
6
|
Given /the provider config is:$/ do |config|
@tempfile = Tempfile.new('provider.json')
@tempfile.write config
@tempfile.close
StaticConfigController::PROVIDER_JSON = @tempfile.path
end
|