metatext/MastodonAPI/Sources/MastodonAPIStubs/ContextEndpoint+Stubbing.swift

20 lines
390 B
Swift
Raw Normal View History

2020-08-19 22:16:03 +00:00
// Copyright © 2020 Metabolist. All rights reserved.
import Foundation
import MastodonAPI
2020-08-31 10:21:01 +00:00
import Stubbing
2020-08-19 22:16:03 +00:00
extension ContextEndpoint: Stubbing {
2020-08-31 10:21:01 +00:00
public func dataString(url: URL) -> String? {
2020-08-19 22:16:03 +00:00
switch self {
case .context:
return """
{
"ancestors": [],
"descendants": []
}
"""
}
}
}