diff options
Diffstat (limited to 't/01-main.t')
| -rw-r--r-- | t/01-main.t | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/t/01-main.t b/t/01-main.t index 1a79add..481c980 100644 --- a/t/01-main.t +++ b/t/01-main.t @@ -14,12 +14,12 @@ my $result = $engine->render( $template, { var1 => 1, var2 => 2, - foo => 'one', - bar => 'two', - baz => 'three' + foo => "one", + bar => "two", + baz => "three" } ); my $expected = - 'this is var1="1" and var2=2' . "\n\nanother line\n\none two three\n"; + qq(this is var1="1" and var2=2\n\nanother line\n\none two three\n); is $result, $expected, "processed a template given as a file name"; |
