empty: str: "" tem: '""' text: str: "hello" tem: '"hello"' dynamic_string: str: 'one #{name} two' tem: '"one #{node.name} two"' concat_static: src: "concat('hello ', 'World!')" tem: '"hello World!"' gsub_static: src: "'one.one'.gsub(/\\./,';')" tem: '"one;one"' upcase_static: src: "'one.one'.gsub(/\\./,';').upcase" tem: '"ONE;ONE"' equal: src: "str == 'str'" tem: '(str=="str")' res: 'true' split: src: "'one.two'.split('.').join('/')" tem: '"one/two"'