WIP: test cases

This commit is contained in:
John Rommel Estropia
2016-05-23 23:40:00 +09:00
parent 77236d66d5
commit 000a357808
5 changed files with 277 additions and 1 deletions

View File

@@ -592,3 +592,14 @@ public final class DataStack {
return self.persistentStoreForStorage(storage)!
}
}
// MARK: - DataStack: Equatable
@warn_unused_result
public func == (lhs: DataStack, rhs: DataStack) -> Bool {
return lhs === rhs
}
extension DataStack: Equatable {}