Created
June 7, 2013 14:07
-
-
Save chris-dannen/5729497 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
describe(@"Sting", ^{ | |
it(@"does not glow, normally", ^{ | |
[[theValue([Sting uniqueInstance].isGlowing) should] beFalse]; | |
}); | |
context(@"there's an orc about", ^{ | |
__block Orc *anOrc = nil; | |
beforeEach(^{ | |
anOrc = [[Orc alloc] init]; | |
}); | |
it(@"glows", ^{ | |
[[theValue([Sting uniqueInstance].isGlowing) should] beTrue]; | |
}); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment