mirror of
https://github.com/metabolist/metatext.git
synced 2024-11-04 16:09:31 +00:00
21 lines
435 B
Swift
21 lines
435 B
Swift
// Copyright © 2020 Metabolist. All rights reserved.
|
|
|
|
import Foundation
|
|
|
|
class MockKeychainService {
|
|
private var items = [String: Data]()
|
|
}
|
|
|
|
extension MockKeychainService: KeychainServiceType {
|
|
func set(data: Data, forKey key: String) throws {
|
|
items[key] = data
|
|
}
|
|
|
|
func deleteData(key: String) throws {
|
|
items[key] = nil
|
|
}
|
|
|
|
func getData(key: String) throws -> Data? {
|
|
items[key]
|
|
}
|
|
}
|