14 lines
308 B
Swift
14 lines
308 B
Swift
|
// Copyright © 2020 Metabolist. All rights reserved.
|
||
|
|
||
|
import Foundation
|
||
|
|
||
|
extension URLSessionConfiguration {
|
||
|
static var stubbing: URLSessionConfiguration {
|
||
|
let configuration = Self.default
|
||
|
|
||
|
configuration.protocolClasses = [StubbingURLProtocol.self]
|
||
|
|
||
|
return configuration
|
||
|
}
|
||
|
}
|