blob: 3f1717e0af9088e8cefc2435a02fc0c7c3a8a345 [file] [log] [blame]
/**
* @version $Revision$
*/
class RodsBooleanBug extends GroovyTestCase {
def item = "hi"
void testBug() {
assert isIt()
}
def isIt() {
return item != null && item == "hi"
}
}