Update RKMappingTest to support easier testing of RKEntityMapping objects by reducing the amount of required configuration to get a test configured.

This commit is contained in:
Blake Watters
2012-10-15 19:27:35 -04:00
parent 74624200da
commit 845de91e80
6 changed files with 69 additions and 12 deletions

View File

@@ -75,10 +75,10 @@
/**
The operation queue in which instances of `RKRelationshipConnectionOperation` will be enqueued to connect the relationships of mapped objects.
If `nil`, then the operation queue returned from `[NSOperationQueue currentQueue]` will be used.
If `nil`, then current operation queue as returned from `[NSOperationQueue currentQueue]` will be used.
Please see the documentation for `parentOperation` for a discussion of this property's function.
*/
@property (nonatomic, weak) NSOperationQueue *operationQueue;
@property (nonatomic, strong) NSOperationQueue *operationQueue;
@end