Is there some reason my Kiwi unit tests are failing with these two lines:
[[theValue([editAuthorViewController class] == [EditAuthorViewController class]) should] beYes];
[[theValue([editAuthorViewController isKindOfClass:[EditAuthorViewController class]]) should] beYes];
While this line passes?
NSString *classString = NSStringFromClass([editAuthorViewController class]);
[[classString should] equal:@"EditAuthorViewController"];