I'm learning how to following TDD using KiWi Framework, my first problem so far is about how can I ask for an existing atributte into a UIViewController class, something like this:
it(@"should have ",^{
UILabel *descriptionLabel = (UILabel *)[viewController objectForPropertyName:@"descriptionLabel"];
[descriptionLabel shouldNotBeNil];
});
The problem here it's that "objectForPropertyName" is a method of another framework class.
Is there a way to ask for "descriptionLabel" using just Kiwi framework?