string test_string
test_string := 'foo'

switch "%tolower(%{test_string})" {
	case 'foo' {
		success
	}

	case '' {
		test_fail
	}

	case {
		test_fail
	}
}

switch "%{test_string}" {
	case 'foo' {
		success
	}

	case '' {
		test_fail
	}

	case {
		test_fail
	}
}
