metatext/MastodonAPI/Sources/MastodonAPIStubs/TimelinesEndpoint+Stubbing.swift
2020-09-03 18:55:46 -07:00

12 lines
297 B
Swift

// Copyright © 2020 Metabolist. All rights reserved.
import Foundation
import MastodonAPI
import Stubbing
extension TimelinesEndpoint: Stubbing {
public func data(url: URL) -> Data? {
try? Data(contentsOf: Bundle.module.url(forResource: "timeline", withExtension: "json")!)
}
}