2020-08-31 12:21:01 +02:00
|
|
|
// Copyright © 2020 Metabolist. All rights reserved.
|
|
|
|
|
|
|
|
import Foundation
|
|
|
|
import Mastodon
|
|
|
|
import Stubbing
|
|
|
|
|
|
|
|
extension AccountEndpoint: Stubbing {
|
|
|
|
public func data(url: URL) -> Data? {
|
|
|
|
switch self {
|
2020-08-31 20:57:02 +02:00
|
|
|
case .verifyCredentials: return try? Data(contentsOf: Bundle.module.url(forResource: "account",
|
|
|
|
withExtension: "json")!)
|
2020-08-31 12:21:01 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|