blob: 076fe8277707796e58e4e31c854879693c16c93f [file] [log] [blame]
class DollarEscapingTest extends GroovyTestCase {
void testEscaping() {
def foo = "hello \${foo}"
assert foo instanceof String
def c = foo.count('$')
assert c == 1 , foo
}
}