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