In specs bdd framework(http://code.google.com/p/specs), i can check if a value is assigned to a string or not using :
SomeClass.strVal == null mustBe false
Now, suppose the class has a boolean value boolVal. How to check if a value true or false was assigned to boolVal or not ?
Please Help Thanks