added some missing tests
authorFabien Potencier <fabien.potencier@gmail.com>
Thu, 25 Nov 2010 16:11:24 +0000 (17:11 +0100)
committerFabien Potencier <fabien.potencier@gmail.com>
Thu, 25 Nov 2010 16:11:24 +0000 (17:11 +0100)
test/Twig/Tests/Fixtures/tests/defined.test [new file with mode: 0644]

diff --git a/test/Twig/Tests/Fixtures/tests/defined.test b/test/Twig/Tests/Fixtures/tests/defined.test
new file mode 100644 (file)
index 0000000..8ae6808
--- /dev/null
@@ -0,0 +1,12 @@
+--TEST--
+"defined" test
+--TEMPLATE--
+{{ foo is defined ? 'ok' : 'ko' }}
+{{ bar is defined ? 'ok' : 'ko' }}
+{{ foobar is not defined ? 'ok' : 'ko' }}
+--DATA--
+return array('foo' => 'bar', 'bar' => null);
+--EXPECT--
+ok
+ok
+ok
\ No newline at end of file