Currently in OCTRealmTests, we are writing to disk to create a realm file for testing. I think it would be better to use an in-memory realm, like so https://realm.io/docs/objc/latest/#testing
Since we are using realm 0.94, we would use +[RLMRealm inMemoryRealmWithIdentifier:]
Currently in
OCTRealmTests
, we are writing to disk to create a realm file for testing. I think it would be better to use an in-memory realm, like so https://realm.io/docs/objc/latest/#testingSince we are using realm 0.94, we would use
+[RLMRealm inMemoryRealmWithIdentifier:]