diff --git a/tests/phpunit.sh b/phpunit.sh similarity index 100% rename from tests/phpunit.sh rename to phpunit.sh diff --git a/tests/phpunit.xml b/phpunit.xml.dist similarity index 100% rename from tests/phpunit.xml rename to phpunit.xml.dist diff --git a/tests/.gitattributes b/tests/.gitattributes deleted file mode 100644 index 412eeda7..00000000 --- a/tests/.gitattributes +++ /dev/null @@ -1,22 +0,0 @@ -# Auto detect text files and perform LF normalization -* text=auto - -# Custom for Visual Studio -*.cs diff=csharp -*.sln merge=union -*.csproj merge=union -*.vbproj merge=union -*.fsproj merge=union -*.dbproj merge=union - -# Standard to msysgit -*.doc diff=astextplain -*.DOC diff=astextplain -*.docx diff=astextplain -*.DOCX diff=astextplain -*.dot diff=astextplain -*.DOT diff=astextplain -*.pdf diff=astextplain -*.PDF diff=astextplain -*.rtf diff=astextplain -*.RTF diff=astextplain diff --git a/tests/.gitignore b/tests/.gitignore index c7bcd248..83774db7 100644 --- a/tests/.gitignore +++ b/tests/.gitignore @@ -8,5 +8,4 @@ testdox.html TestResults.tap TestResults.txt -.templates_c/*.php -.cache/*.php + diff --git a/tests/CleanUp.php b/tests/CleanUp.php deleted file mode 100644 index d03c0b67..00000000 --- a/tests/CleanUp.php +++ /dev/null @@ -1,31 +0,0 @@ -getPathname(); - if ((strpos($p, '\templates_c') !== false) || (strpos($p, '\cache') !== false) || - (strpos($p, '\templates_tmp') !== false)) { - $path2 = $path; - $pp = $path->getPath(); - foreach (new RecursiveIteratorIterator(new RecursiveDirectoryIterator($path->getPath(). '\\', FilesystemIterator::SKIP_DOTS), - RecursiveIteratorIterator::CHILD_FIRST) as $path2) { - $p2 = $path2->getPathname(); - if ((strpos($p2, '\templates_c\\') !== false) || (strpos($p2, '\cache\\') !== false) || - (strpos($p2, '\templates_tmp\\') !== false)) { - if ($path2->isDir() && !$path2->isLink()) { - rmdir($p2); - } else { - unlink($p2); - } - } - } - $name = $pp. '\dummy.txt'; - - file_put_contents($name,'dummy'); - } -} - - diff --git a/tests/README.md b/tests/README.md deleted file mode 100644 index 31ec00cf..00000000 --- a/tests/README.md +++ /dev/null @@ -1,15 +0,0 @@ -# Smarty 3 template engine -## PHPUnit repository - -For installing the PHPUnit test by composer use the following: - - "require-dev": { - "smarty/smarty-phpunit": "3.1.21" - } - -Replace 3.1.21 with the installed Smarty version number. - - -The tests for the custom template and cache resources Mysql, Memcache and APC can -be enabled in config.php. - diff --git a/tests/UnitTests/A_0/PathNormalization/cache/.gitignore b/tests/UnitTests/A_0/PathNormalization/cache/.gitignore new file mode 100644 index 00000000..1d34e205 --- /dev/null +++ b/tests/UnitTests/A_0/PathNormalization/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* \ No newline at end of file diff --git a/tests/UnitTests/A_0/PathNormalization/cache/dummy.txt b/tests/UnitTests/A_0/PathNormalization/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/A_0/PathNormalization/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/A_0/PathNormalization/templates_c/.gitignore b/tests/UnitTests/A_0/PathNormalization/templates_c/.gitignore new file mode 100644 index 00000000..1d34e205 --- /dev/null +++ b/tests/UnitTests/A_0/PathNormalization/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* \ No newline at end of file diff --git a/tests/UnitTests/A_0/PathNormalization/templates_c/dummy.txt b/tests/UnitTests/A_0/PathNormalization/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/A_0/PathNormalization/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/A_1/ProtectedFolderVars/ProtectedFolderVarsTest.php b/tests/UnitTests/A_1/ProtectedFolderVars/ProtectedFolderVarsTest.php index e635740a..a51757ae 100644 --- a/tests/UnitTests/A_1/ProtectedFolderVars/ProtectedFolderVarsTest.php +++ b/tests/UnitTests/A_1/ProtectedFolderVars/ProtectedFolderVarsTest.php @@ -199,7 +199,7 @@ class ProtectedFolderVarsTest extends PHPUnit_Smarty { $s = new FolderT(); $d = $s->getCacheDir(); - $this->assertEquals(dirname(__FILE__) . DIRECTORY_SEPARATOR . 'cach' . DIRECTORY_SEPARATOR, $d); + $this->assertEquals(dirname(__FILE__) . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR, $d); } public function testCacheDirDirectRelativeExtends2() @@ -219,7 +219,7 @@ class FolderT extends Smarty protected $plugins_dir = './plug/'; - protected $cache_dir = './cach/'; + protected $cache_dir = './cache/'; protected $config_dir = array('./conf/'); diff --git a/tests/UnitTests/A_1/ProtectedFolderVars/cach/dummy.txt b/tests/UnitTests/A_1/ProtectedFolderVars/cach/dummy.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/UnitTests/A_1/ProtectedFolderVars/cache/.gitignore b/tests/UnitTests/A_1/ProtectedFolderVars/cache/.gitignore new file mode 100644 index 00000000..1d34e205 --- /dev/null +++ b/tests/UnitTests/A_1/ProtectedFolderVars/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* \ No newline at end of file diff --git a/tests/UnitTests/A_1/ProtectedFolderVars/cache/dummy.txt b/tests/UnitTests/A_1/ProtectedFolderVars/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/A_1/ProtectedFolderVars/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/A_1/ProtectedFolderVars/comp/.gitignore b/tests/UnitTests/A_1/ProtectedFolderVars/comp/.gitignore new file mode 100644 index 00000000..1d34e205 --- /dev/null +++ b/tests/UnitTests/A_1/ProtectedFolderVars/comp/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* \ No newline at end of file diff --git a/tests/UnitTests/A_1/ProtectedFolderVars/comp/dummy.txt b/tests/UnitTests/A_1/ProtectedFolderVars/comp/dummy.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/UnitTests/A_1/ProtectedFolderVars/templates_c/dummy.txt b/tests/UnitTests/A_1/ProtectedFolderVars/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/A_1/ProtectedFolderVars/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/A_2/UndefinedTemplateVar/cache/.gitignore b/tests/UnitTests/A_2/UndefinedTemplateVar/cache/.gitignore new file mode 100644 index 00000000..1d34e205 --- /dev/null +++ b/tests/UnitTests/A_2/UndefinedTemplateVar/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* \ No newline at end of file diff --git a/tests/UnitTests/A_2/UndefinedTemplateVar/cache/dummy.txt b/tests/UnitTests/A_2/UndefinedTemplateVar/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/A_2/UndefinedTemplateVar/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/A_2/UndefinedTemplateVar/templates_c/.gitignore b/tests/UnitTests/A_2/UndefinedTemplateVar/templates_c/.gitignore new file mode 100644 index 00000000..1d34e205 --- /dev/null +++ b/tests/UnitTests/A_2/UndefinedTemplateVar/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* \ No newline at end of file diff --git a/tests/UnitTests/A_2/UndefinedTemplateVar/templates_c/dummy.txt b/tests/UnitTests/A_2/UndefinedTemplateVar/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/A_2/UndefinedTemplateVar/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/A_Core/AutoEscape/cache/.gitignore b/tests/UnitTests/A_Core/AutoEscape/cache/.gitignore new file mode 100644 index 00000000..1d34e205 --- /dev/null +++ b/tests/UnitTests/A_Core/AutoEscape/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* \ No newline at end of file diff --git a/tests/UnitTests/A_Core/AutoEscape/cache/dummy.txt b/tests/UnitTests/A_Core/AutoEscape/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/A_Core/AutoEscape/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/A_Core/AutoEscape/templates_c/.gitignore b/tests/UnitTests/A_Core/AutoEscape/templates_c/.gitignore new file mode 100644 index 00000000..1d34e205 --- /dev/null +++ b/tests/UnitTests/A_Core/AutoEscape/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* \ No newline at end of file diff --git a/tests/UnitTests/A_Core/AutoEscape/templates_c/dummy.txt b/tests/UnitTests/A_Core/AutoEscape/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/A_Core/AutoEscape/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/A_Core/Filter/cache/.gitignore b/tests/UnitTests/A_Core/Filter/cache/.gitignore new file mode 100644 index 00000000..1d34e205 --- /dev/null +++ b/tests/UnitTests/A_Core/Filter/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* \ No newline at end of file diff --git a/tests/UnitTests/A_Core/Filter/cache/dummy.txt b/tests/UnitTests/A_Core/Filter/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/A_Core/Filter/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/A_Core/Filter/templates_c/.gitignore b/tests/UnitTests/A_Core/Filter/templates_c/.gitignore new file mode 100644 index 00000000..f26ba8a5 --- /dev/null +++ b/tests/UnitTests/A_Core/Filter/templates_c/.gitignore @@ -0,0 +1,2 @@ +dummy# Ignore anything in here, but keep this directory + * \ No newline at end of file diff --git a/tests/UnitTests/A_Core/Filter/templates_c/dummy.txt b/tests/UnitTests/A_Core/Filter/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/A_Core/Filter/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/A_Core/GetterSetter/cache/.gitignore b/tests/UnitTests/A_Core/GetterSetter/cache/.gitignore new file mode 100644 index 00000000..1d34e205 --- /dev/null +++ b/tests/UnitTests/A_Core/GetterSetter/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* \ No newline at end of file diff --git a/tests/UnitTests/A_Core/GetterSetter/cache/dummy.txt b/tests/UnitTests/A_Core/GetterSetter/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/A_Core/GetterSetter/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/A_Core/GetterSetter/templates_c/.gitignore b/tests/UnitTests/A_Core/GetterSetter/templates_c/.gitignore new file mode 100644 index 00000000..1d34e205 --- /dev/null +++ b/tests/UnitTests/A_Core/GetterSetter/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* \ No newline at end of file diff --git a/tests/UnitTests/A_Core/GetterSetter/templates_c/dummy.txt b/tests/UnitTests/A_Core/GetterSetter/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/A_Core/GetterSetter/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/A_Core/LoadPlugin/cache/.gitignore b/tests/UnitTests/A_Core/LoadPlugin/cache/.gitignore new file mode 100644 index 00000000..1d34e205 --- /dev/null +++ b/tests/UnitTests/A_Core/LoadPlugin/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* \ No newline at end of file diff --git a/tests/UnitTests/A_Core/LoadPlugin/cache/dummy.txt b/tests/UnitTests/A_Core/LoadPlugin/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/A_Core/LoadPlugin/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/A_Core/LoadPlugin/templates_c/.gitignore b/tests/UnitTests/A_Core/LoadPlugin/templates_c/.gitignore new file mode 100644 index 00000000..1d34e205 --- /dev/null +++ b/tests/UnitTests/A_Core/LoadPlugin/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* \ No newline at end of file diff --git a/tests/UnitTests/A_Core/LoadPlugin/templates_c/dummy.txt b/tests/UnitTests/A_Core/LoadPlugin/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/A_Core/LoadPlugin/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/A_Core/MuteExpectedErrors/cache/.gitignore b/tests/UnitTests/A_Core/MuteExpectedErrors/cache/.gitignore new file mode 100644 index 00000000..1d34e205 --- /dev/null +++ b/tests/UnitTests/A_Core/MuteExpectedErrors/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* \ No newline at end of file diff --git a/tests/UnitTests/A_Core/MuteExpectedErrors/cache/dummy.txt b/tests/UnitTests/A_Core/MuteExpectedErrors/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/A_Core/MuteExpectedErrors/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/A_Core/MuteExpectedErrors/templates_c/.gitignore b/tests/UnitTests/A_Core/MuteExpectedErrors/templates_c/.gitignore new file mode 100644 index 00000000..1d34e205 --- /dev/null +++ b/tests/UnitTests/A_Core/MuteExpectedErrors/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* \ No newline at end of file diff --git a/tests/UnitTests/A_Core/MuteExpectedErrors/templates_c/dummy.txt b/tests/UnitTests/A_Core/MuteExpectedErrors/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/A_Core/MuteExpectedErrors/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/A_Core/PluginTests/Shared/cache/.gitignore b/tests/UnitTests/A_Core/PluginTests/Shared/cache/.gitignore new file mode 100644 index 00000000..1d34e205 --- /dev/null +++ b/tests/UnitTests/A_Core/PluginTests/Shared/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* \ No newline at end of file diff --git a/tests/UnitTests/A_Core/PluginTests/Shared/cache/dummy.txt b/tests/UnitTests/A_Core/PluginTests/Shared/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/A_Core/PluginTests/Shared/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/A_Core/PluginTests/Shared/templates_c/.gitignore b/tests/UnitTests/A_Core/PluginTests/Shared/templates_c/.gitignore new file mode 100644 index 00000000..1d34e205 --- /dev/null +++ b/tests/UnitTests/A_Core/PluginTests/Shared/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* \ No newline at end of file diff --git a/tests/UnitTests/A_Core/PluginTests/Shared/templates_c/dummy.txt b/tests/UnitTests/A_Core/PluginTests/Shared/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/A_Core/PluginTests/Shared/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/A_Core/PluginTests/cache/.gitignore b/tests/UnitTests/A_Core/PluginTests/cache/.gitignore new file mode 100644 index 00000000..1d34e205 --- /dev/null +++ b/tests/UnitTests/A_Core/PluginTests/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* \ No newline at end of file diff --git a/tests/UnitTests/A_Core/PluginTests/cache/dummy.txt b/tests/UnitTests/A_Core/PluginTests/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/A_Core/PluginTests/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/A_Core/PluginTests/templates_c/.gitignore b/tests/UnitTests/A_Core/PluginTests/templates_c/.gitignore new file mode 100644 index 00000000..1d34e205 --- /dev/null +++ b/tests/UnitTests/A_Core/PluginTests/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* \ No newline at end of file diff --git a/tests/UnitTests/A_Core/PluginTests/templates_c/dummy.txt b/tests/UnitTests/A_Core/PluginTests/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/A_Core/PluginTests/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/A_Core/SmartyBC/cache/.gitignore b/tests/UnitTests/A_Core/SmartyBC/cache/.gitignore new file mode 100644 index 00000000..1d34e205 --- /dev/null +++ b/tests/UnitTests/A_Core/SmartyBC/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* \ No newline at end of file diff --git a/tests/UnitTests/A_Core/SmartyBC/cache/dummy.txt b/tests/UnitTests/A_Core/SmartyBC/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/A_Core/SmartyBC/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/A_Core/SmartyBC/templates_c/.gitignore b/tests/UnitTests/A_Core/SmartyBC/templates_c/.gitignore new file mode 100644 index 00000000..1d34e205 --- /dev/null +++ b/tests/UnitTests/A_Core/SmartyBC/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* \ No newline at end of file diff --git a/tests/UnitTests/A_Core/SmartyBC/templates_c/dummy.txt b/tests/UnitTests/A_Core/SmartyBC/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/A_Core/SmartyBC/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/CacheModify/ModifiedSince/cache/.gitignore b/tests/UnitTests/CacheModify/ModifiedSince/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/CacheModify/ModifiedSince/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/CacheModify/ModifiedSince/cache/dummy.txt b/tests/UnitTests/CacheModify/ModifiedSince/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/CacheModify/ModifiedSince/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/CacheModify/ModifiedSince/templates_c/.gitignore b/tests/UnitTests/CacheModify/ModifiedSince/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/CacheModify/ModifiedSince/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/CacheModify/ModifiedSince/templates_c/dummy.txt b/tests/UnitTests/CacheModify/ModifiedSince/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/CacheModify/ModifiedSince/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/CacheResourceTests/File/cache/.gitignore b/tests/UnitTests/CacheResourceTests/File/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/CacheResourceTests/File/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/CacheResourceTests/File/cache/dummy.txt b/tests/UnitTests/CacheResourceTests/File/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/CacheResourceTests/File/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/CacheResourceTests/File/templates_c/.gitignore b/tests/UnitTests/CacheResourceTests/File/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/CacheResourceTests/File/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/CacheResourceTests/File/templates_c/dummy.txt b/tests/UnitTests/CacheResourceTests/File/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/CacheResourceTests/File/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/CacheResourceTests/Memcache/templates_c/.gitignore b/tests/UnitTests/CacheResourceTests/Memcache/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/CacheResourceTests/Memcache/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/CacheResourceTests/Memcache/templates_c/dummy.txt b/tests/UnitTests/CacheResourceTests/Memcache/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/CacheResourceTests/Memcache/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/CacheResourceTests/Mysql/cache/.gitignore b/tests/UnitTests/CacheResourceTests/Mysql/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/CacheResourceTests/Mysql/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/CacheResourceTests/Mysql/cache/dummy.txt b/tests/UnitTests/CacheResourceTests/Mysql/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/CacheResourceTests/Mysql/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/CacheResourceTests/Mysql/templates_c/.gitignore b/tests/UnitTests/CacheResourceTests/Mysql/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/CacheResourceTests/Mysql/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/CacheResourceTests/Mysql/templates_c/dummy.txt b/tests/UnitTests/CacheResourceTests/Mysql/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/CacheResourceTests/Mysql/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/CacheResourceTests/Registered/templates_c/.gitignore b/tests/UnitTests/CacheResourceTests/Registered/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/CacheResourceTests/Registered/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/CacheResourceTests/Registered/templates_c/dummy.txt b/tests/UnitTests/CacheResourceTests/Registered/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/CacheResourceTests/Registered/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/CacheResourceTests/_shared/PHPunitplugins/dummy.txt b/tests/UnitTests/CacheResourceTests/_shared/PHPunitplugins/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/CacheResourceTests/_shared/PHPunitplugins/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/CacheResourceTests/_shared/templates/dummy.txt b/tests/UnitTests/CacheResourceTests/_shared/templates/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/CacheResourceTests/_shared/templates/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/Compiler/CompilerPlugin/cache/.gitignore b/tests/UnitTests/Compiler/CompilerPlugin/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/Compiler/CompilerPlugin/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/Compiler/CompilerPlugin/cache/dummy.txt b/tests/UnitTests/Compiler/CompilerPlugin/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/Compiler/CompilerPlugin/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/Compiler/CompilerPlugin/templates_c/.gitignore b/tests/UnitTests/Compiler/CompilerPlugin/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/Compiler/CompilerPlugin/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/Compiler/CompilerPlugin/templates_c/dummy.txt b/tests/UnitTests/Compiler/CompilerPlugin/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/Compiler/CompilerPlugin/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/Compiler/Delimiter/cache/.gitignore b/tests/UnitTests/Compiler/Delimiter/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/Compiler/Delimiter/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/Compiler/Delimiter/cache/dummy.txt b/tests/UnitTests/Compiler/Delimiter/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/Compiler/Delimiter/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/Compiler/Delimiter/templates_c/.gitignore b/tests/UnitTests/Compiler/Delimiter/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/Compiler/Delimiter/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/Compiler/Delimiter/templates_c/dummy.txt b/tests/UnitTests/Compiler/Delimiter/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/Compiler/Delimiter/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/ConfigFileTests/defaultHandler/templates_c/.gitignore b/tests/UnitTests/ConfigFileTests/defaultHandler/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/ConfigFileTests/defaultHandler/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/ConfigFileTests/defaultHandler/templates_c/dummy.txt b/tests/UnitTests/ConfigFileTests/defaultHandler/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/ConfigFileTests/defaultHandler/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/ConfigFileTests/file/templates_c/.gitignore b/tests/UnitTests/ConfigFileTests/file/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/ConfigFileTests/file/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/ConfigFileTests/file/templates_c/dummy.txt b/tests/UnitTests/ConfigFileTests/file/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/ConfigFileTests/file/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/ResourceTests/Custom/Ambiguous/cache/.gitignore b/tests/UnitTests/ResourceTests/Custom/Ambiguous/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/ResourceTests/Custom/Ambiguous/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/ResourceTests/Custom/Ambiguous/cache/dummy.txt b/tests/UnitTests/ResourceTests/Custom/Ambiguous/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/ResourceTests/Custom/Ambiguous/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/ResourceTests/Custom/Ambiguous/templates_c/.gitignore b/tests/UnitTests/ResourceTests/Custom/Ambiguous/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/ResourceTests/Custom/Ambiguous/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/ResourceTests/Custom/Ambiguous/templates_c/dummy.txt b/tests/UnitTests/ResourceTests/Custom/Ambiguous/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/ResourceTests/Custom/Ambiguous/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/ResourceTests/Custom/DemoPluginExtendsAll/cache/.gitignore b/tests/UnitTests/ResourceTests/Custom/DemoPluginExtendsAll/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/ResourceTests/Custom/DemoPluginExtendsAll/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/ResourceTests/Custom/DemoPluginExtendsAll/cache/dummy.txt b/tests/UnitTests/ResourceTests/Custom/DemoPluginExtendsAll/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/ResourceTests/Custom/DemoPluginExtendsAll/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/ResourceTests/Custom/DemoPluginExtendsAll/templates_c/.gitignore b/tests/UnitTests/ResourceTests/Custom/DemoPluginExtendsAll/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/ResourceTests/Custom/DemoPluginExtendsAll/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/ResourceTests/Custom/DemoPluginExtendsAll/templates_c/dummy.txt b/tests/UnitTests/ResourceTests/Custom/DemoPluginExtendsAll/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/ResourceTests/Custom/DemoPluginExtendsAll/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/ResourceTests/Custom/DemoPluginMysql/cache/.gitignore b/tests/UnitTests/ResourceTests/Custom/DemoPluginMysql/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/ResourceTests/Custom/DemoPluginMysql/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/ResourceTests/Custom/DemoPluginMysql/cache/dummy.txt b/tests/UnitTests/ResourceTests/Custom/DemoPluginMysql/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/ResourceTests/Custom/DemoPluginMysql/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/ResourceTests/Custom/DemoPluginMysql/templates_c/.gitignore b/tests/UnitTests/ResourceTests/Custom/DemoPluginMysql/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/ResourceTests/Custom/DemoPluginMysql/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/ResourceTests/Custom/DemoPluginMysql/templates_c/dummy.txt b/tests/UnitTests/ResourceTests/Custom/DemoPluginMysql/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/ResourceTests/Custom/DemoPluginMysql/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/ResourceTests/DefaultHandler/cache/.gitignore b/tests/UnitTests/ResourceTests/DefaultHandler/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/ResourceTests/DefaultHandler/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/ResourceTests/DefaultHandler/cache/dummy.txt b/tests/UnitTests/ResourceTests/DefaultHandler/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/ResourceTests/DefaultHandler/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/ResourceTests/DefaultHandler/templates_c/.gitignore b/tests/UnitTests/ResourceTests/DefaultHandler/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/ResourceTests/DefaultHandler/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/ResourceTests/DefaultHandler/templates_c/dummy.txt b/tests/UnitTests/ResourceTests/DefaultHandler/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/ResourceTests/DefaultHandler/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/ResourceTests/Eval/cache/.gitignore b/tests/UnitTests/ResourceTests/Eval/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/ResourceTests/Eval/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/ResourceTests/Eval/cache/dummy.txt b/tests/UnitTests/ResourceTests/Eval/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/ResourceTests/Eval/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/ResourceTests/Eval/templates_c/.gitignore b/tests/UnitTests/ResourceTests/Eval/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/ResourceTests/Eval/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/ResourceTests/Eval/templates_c/dummy.txt b/tests/UnitTests/ResourceTests/Eval/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/ResourceTests/Eval/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/ResourceTests/Extends/cache/.gitignore b/tests/UnitTests/ResourceTests/Extends/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/ResourceTests/Extends/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/ResourceTests/Extends/cache/dummy.txt b/tests/UnitTests/ResourceTests/Extends/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/ResourceTests/Extends/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/ResourceTests/Extends/templates_c/.gitignore b/tests/UnitTests/ResourceTests/Extends/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/ResourceTests/Extends/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/ResourceTests/Extends/templates_c/dummy.txt b/tests/UnitTests/ResourceTests/Extends/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/ResourceTests/Extends/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/ResourceTests/File/cache/.gitignore b/tests/UnitTests/ResourceTests/File/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/ResourceTests/File/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/ResourceTests/File/cache/dummy.txt b/tests/UnitTests/ResourceTests/File/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/ResourceTests/File/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/ResourceTests/File/templates_c/.gitignore b/tests/UnitTests/ResourceTests/File/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/ResourceTests/File/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/ResourceTests/File/templates_c/dummy.txt b/tests/UnitTests/ResourceTests/File/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/ResourceTests/File/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/ResourceTests/FileIncludePath/cache/.gitignore b/tests/UnitTests/ResourceTests/FileIncludePath/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/ResourceTests/FileIncludePath/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/ResourceTests/FileIncludePath/cache/dummy.txt b/tests/UnitTests/ResourceTests/FileIncludePath/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/ResourceTests/FileIncludePath/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/ResourceTests/FileIncludePath/templates_c/.gitignore b/tests/UnitTests/ResourceTests/FileIncludePath/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/ResourceTests/FileIncludePath/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/ResourceTests/FileIncludePath/templates_c/dummy.txt b/tests/UnitTests/ResourceTests/FileIncludePath/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/ResourceTests/FileIncludePath/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/ResourceTests/FileIndexed/cache/.gitignore b/tests/UnitTests/ResourceTests/FileIndexed/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/ResourceTests/FileIndexed/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/ResourceTests/FileIndexed/cache/dummy.txt b/tests/UnitTests/ResourceTests/FileIndexed/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/ResourceTests/FileIndexed/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/ResourceTests/FileIndexed/templates_c/.gitignore b/tests/UnitTests/ResourceTests/FileIndexed/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/ResourceTests/FileIndexed/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/ResourceTests/FileIndexed/templates_c/dummy.txt b/tests/UnitTests/ResourceTests/FileIndexed/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/ResourceTests/FileIndexed/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/ResourceTests/Php/cache/.gitignore b/tests/UnitTests/ResourceTests/Php/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/ResourceTests/Php/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/ResourceTests/Php/cache/dummy.txt b/tests/UnitTests/ResourceTests/Php/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/ResourceTests/Php/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/ResourceTests/Php/templates_c/.gitignore b/tests/UnitTests/ResourceTests/Php/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/ResourceTests/Php/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/ResourceTests/Php/templates_c/dummy.txt b/tests/UnitTests/ResourceTests/Php/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/ResourceTests/Php/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/ResourceTests/Registered/cache/.gitignore b/tests/UnitTests/ResourceTests/Registered/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/ResourceTests/Registered/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/ResourceTests/Registered/cache/dummy.txt b/tests/UnitTests/ResourceTests/Registered/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/ResourceTests/Registered/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/ResourceTests/Registered/templates_c/.gitignore b/tests/UnitTests/ResourceTests/Registered/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/ResourceTests/Registered/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/ResourceTests/Registered/templates_c/dummy.txt b/tests/UnitTests/ResourceTests/Registered/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/ResourceTests/Registered/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/ResourceTests/ResourcePlugins/cache/.gitignore b/tests/UnitTests/ResourceTests/ResourcePlugins/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/ResourceTests/ResourcePlugins/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/ResourceTests/ResourcePlugins/cache/dummy.txt b/tests/UnitTests/ResourceTests/ResourcePlugins/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/ResourceTests/ResourcePlugins/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/ResourceTests/ResourcePlugins/templates_c/.gitignore b/tests/UnitTests/ResourceTests/ResourcePlugins/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/ResourceTests/ResourcePlugins/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/ResourceTests/ResourcePlugins/templates_c/dummy.txt b/tests/UnitTests/ResourceTests/ResourcePlugins/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/ResourceTests/ResourcePlugins/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/ResourceTests/Stream/cache/.gitignore b/tests/UnitTests/ResourceTests/Stream/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/ResourceTests/Stream/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/ResourceTests/Stream/cache/dummy.txt b/tests/UnitTests/ResourceTests/Stream/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/ResourceTests/Stream/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/ResourceTests/Stream/templates_c/.gitignore b/tests/UnitTests/ResourceTests/Stream/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/ResourceTests/Stream/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/ResourceTests/Stream/templates_c/dummy.txt b/tests/UnitTests/ResourceTests/Stream/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/ResourceTests/Stream/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/ResourceTests/String/cache/.gitignore b/tests/UnitTests/ResourceTests/String/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/ResourceTests/String/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/ResourceTests/String/cache/dummy.txt b/tests/UnitTests/ResourceTests/String/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/ResourceTests/String/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/ResourceTests/String/templates_c/.gitignore b/tests/UnitTests/ResourceTests/String/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/ResourceTests/String/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/ResourceTests/String/templates_c/dummy.txt b/tests/UnitTests/ResourceTests/String/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/ResourceTests/String/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/SecurityTests/cache/.gitignore b/tests/UnitTests/SecurityTests/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/SecurityTests/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/SecurityTests/cache/dummy.txt b/tests/UnitTests/SecurityTests/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/SecurityTests/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/SecurityTests/templates_c/.gitignore b/tests/UnitTests/SecurityTests/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/SecurityTests/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/SecurityTests/templates_c/dummy.txt b/tests/UnitTests/SecurityTests/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/SecurityTests/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/SmartyMethodsTests/Append/cache/.gitignore b/tests/UnitTests/SmartyMethodsTests/Append/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/SmartyMethodsTests/Append/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/SmartyMethodsTests/Append/cache/dummy.txt b/tests/UnitTests/SmartyMethodsTests/Append/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/SmartyMethodsTests/Append/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/SmartyMethodsTests/Append/templates_c/.gitignore b/tests/UnitTests/SmartyMethodsTests/Append/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/SmartyMethodsTests/Append/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/SmartyMethodsTests/Append/templates_c/dummy.txt b/tests/UnitTests/SmartyMethodsTests/Append/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/SmartyMethodsTests/Append/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/SmartyMethodsTests/AppendByRef/cache/.gitignore b/tests/UnitTests/SmartyMethodsTests/AppendByRef/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/SmartyMethodsTests/AppendByRef/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/SmartyMethodsTests/AppendByRef/cache/dummy.txt b/tests/UnitTests/SmartyMethodsTests/AppendByRef/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/SmartyMethodsTests/AppendByRef/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/SmartyMethodsTests/AppendByRef/templates_c/.gitignore b/tests/UnitTests/SmartyMethodsTests/AppendByRef/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/SmartyMethodsTests/AppendByRef/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/SmartyMethodsTests/AppendByRef/templates_c/dummy.txt b/tests/UnitTests/SmartyMethodsTests/AppendByRef/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/SmartyMethodsTests/AppendByRef/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/SmartyMethodsTests/Assign/cache/.gitignore b/tests/UnitTests/SmartyMethodsTests/Assign/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/SmartyMethodsTests/Assign/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/SmartyMethodsTests/Assign/cache/dummy.txt b/tests/UnitTests/SmartyMethodsTests/Assign/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/SmartyMethodsTests/Assign/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/SmartyMethodsTests/Assign/templates_c/.gitignore b/tests/UnitTests/SmartyMethodsTests/Assign/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/SmartyMethodsTests/Assign/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/SmartyMethodsTests/Assign/templates_c/dummy.txt b/tests/UnitTests/SmartyMethodsTests/Assign/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/SmartyMethodsTests/Assign/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/SmartyMethodsTests/AssignByRef/cache/.gitignore b/tests/UnitTests/SmartyMethodsTests/AssignByRef/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/SmartyMethodsTests/AssignByRef/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/SmartyMethodsTests/AssignByRef/cache/dummy.txt b/tests/UnitTests/SmartyMethodsTests/AssignByRef/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/SmartyMethodsTests/AssignByRef/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/SmartyMethodsTests/AssignByRef/templates_c/.gitignore b/tests/UnitTests/SmartyMethodsTests/AssignByRef/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/SmartyMethodsTests/AssignByRef/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/SmartyMethodsTests/AssignByRef/templates_c/dummy.txt b/tests/UnitTests/SmartyMethodsTests/AssignByRef/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/SmartyMethodsTests/AssignByRef/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/SmartyMethodsTests/AssignGlobal/cache/.gitignore b/tests/UnitTests/SmartyMethodsTests/AssignGlobal/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/SmartyMethodsTests/AssignGlobal/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/SmartyMethodsTests/AssignGlobal/cache/dummy.txt b/tests/UnitTests/SmartyMethodsTests/AssignGlobal/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/SmartyMethodsTests/AssignGlobal/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/SmartyMethodsTests/AssignGlobal/templates_c/.gitignore b/tests/UnitTests/SmartyMethodsTests/AssignGlobal/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/SmartyMethodsTests/AssignGlobal/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/SmartyMethodsTests/AssignGlobal/templates_c/dummy.txt b/tests/UnitTests/SmartyMethodsTests/AssignGlobal/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/SmartyMethodsTests/AssignGlobal/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/SmartyMethodsTests/ClearAllAssign/cache/.gitignore b/tests/UnitTests/SmartyMethodsTests/ClearAllAssign/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/SmartyMethodsTests/ClearAllAssign/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/SmartyMethodsTests/ClearAllAssign/cache/dummy.txt b/tests/UnitTests/SmartyMethodsTests/ClearAllAssign/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/SmartyMethodsTests/ClearAllAssign/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/SmartyMethodsTests/ClearAllAssign/templates_c/.gitignore b/tests/UnitTests/SmartyMethodsTests/ClearAllAssign/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/SmartyMethodsTests/ClearAllAssign/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/SmartyMethodsTests/ClearAllAssign/templates_c/dummy.txt b/tests/UnitTests/SmartyMethodsTests/ClearAllAssign/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/SmartyMethodsTests/ClearAllAssign/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/SmartyMethodsTests/ClearAssign/cache/.gitignore b/tests/UnitTests/SmartyMethodsTests/ClearAssign/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/SmartyMethodsTests/ClearAssign/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/SmartyMethodsTests/ClearAssign/cache/dummy.txt b/tests/UnitTests/SmartyMethodsTests/ClearAssign/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/SmartyMethodsTests/ClearAssign/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/SmartyMethodsTests/ClearAssign/templates_c/.gitignore b/tests/UnitTests/SmartyMethodsTests/ClearAssign/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/SmartyMethodsTests/ClearAssign/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/SmartyMethodsTests/ClearAssign/templates_c/dummy.txt b/tests/UnitTests/SmartyMethodsTests/ClearAssign/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/SmartyMethodsTests/ClearAssign/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/SmartyMethodsTests/ClearCompiledTemplate/cache/.gitignore b/tests/UnitTests/SmartyMethodsTests/ClearCompiledTemplate/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/SmartyMethodsTests/ClearCompiledTemplate/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/SmartyMethodsTests/ClearCompiledTemplate/cache/dummy.txt b/tests/UnitTests/SmartyMethodsTests/ClearCompiledTemplate/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/SmartyMethodsTests/ClearCompiledTemplate/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/SmartyMethodsTests/ClearCompiledTemplate/templates_c/.gitignore b/tests/UnitTests/SmartyMethodsTests/ClearCompiledTemplate/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/SmartyMethodsTests/ClearCompiledTemplate/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/SmartyMethodsTests/ClearCompiledTemplate/templates_c/dummy.txt b/tests/UnitTests/SmartyMethodsTests/ClearCompiledTemplate/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/SmartyMethodsTests/ClearCompiledTemplate/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/SmartyMethodsTests/GetTemplateVars/cache/.gitignore b/tests/UnitTests/SmartyMethodsTests/GetTemplateVars/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/SmartyMethodsTests/GetTemplateVars/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/SmartyMethodsTests/GetTemplateVars/cache/dummy.txt b/tests/UnitTests/SmartyMethodsTests/GetTemplateVars/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/SmartyMethodsTests/GetTemplateVars/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/SmartyMethodsTests/GetTemplateVars/templates_c/.gitignore b/tests/UnitTests/SmartyMethodsTests/GetTemplateVars/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/SmartyMethodsTests/GetTemplateVars/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/SmartyMethodsTests/GetTemplateVars/templates_c/dummy.txt b/tests/UnitTests/SmartyMethodsTests/GetTemplateVars/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/SmartyMethodsTests/GetTemplateVars/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/SmartyMethodsTests/RegisterBlock/cache/.gitignore b/tests/UnitTests/SmartyMethodsTests/RegisterBlock/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/SmartyMethodsTests/RegisterBlock/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/SmartyMethodsTests/RegisterBlock/cache/dummy.txt b/tests/UnitTests/SmartyMethodsTests/RegisterBlock/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/SmartyMethodsTests/RegisterBlock/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/SmartyMethodsTests/RegisterBlock/templates_c/.gitignore b/tests/UnitTests/SmartyMethodsTests/RegisterBlock/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/SmartyMethodsTests/RegisterBlock/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/SmartyMethodsTests/RegisterBlock/templates_c/dummy.txt b/tests/UnitTests/SmartyMethodsTests/RegisterBlock/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/SmartyMethodsTests/RegisterBlock/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/SmartyMethodsTests/RegisterCompiler/cache/.gitignore b/tests/UnitTests/SmartyMethodsTests/RegisterCompiler/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/SmartyMethodsTests/RegisterCompiler/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/SmartyMethodsTests/RegisterCompiler/cache/dummy.txt b/tests/UnitTests/SmartyMethodsTests/RegisterCompiler/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/SmartyMethodsTests/RegisterCompiler/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/SmartyMethodsTests/RegisterCompiler/templates_c/.gitignore b/tests/UnitTests/SmartyMethodsTests/RegisterCompiler/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/SmartyMethodsTests/RegisterCompiler/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/SmartyMethodsTests/RegisterCompiler/templates_c/dummy.txt b/tests/UnitTests/SmartyMethodsTests/RegisterCompiler/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/SmartyMethodsTests/RegisterCompiler/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/SmartyMethodsTests/RegisterFunction/cache/.gitignore b/tests/UnitTests/SmartyMethodsTests/RegisterFunction/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/SmartyMethodsTests/RegisterFunction/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/SmartyMethodsTests/RegisterFunction/cache/dummy.txt b/tests/UnitTests/SmartyMethodsTests/RegisterFunction/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/SmartyMethodsTests/RegisterFunction/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/SmartyMethodsTests/RegisterFunction/templates_c/.gitignore b/tests/UnitTests/SmartyMethodsTests/RegisterFunction/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/SmartyMethodsTests/RegisterFunction/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/SmartyMethodsTests/RegisterFunction/templates_c/dummy.txt b/tests/UnitTests/SmartyMethodsTests/RegisterFunction/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/SmartyMethodsTests/RegisterFunction/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/SmartyMethodsTests/RegisterModifier/cache/.gitignore b/tests/UnitTests/SmartyMethodsTests/RegisterModifier/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/SmartyMethodsTests/RegisterModifier/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/SmartyMethodsTests/RegisterModifier/cache/dummy.txt b/tests/UnitTests/SmartyMethodsTests/RegisterModifier/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/SmartyMethodsTests/RegisterModifier/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/SmartyMethodsTests/RegisterModifier/templates_c/.gitignore b/tests/UnitTests/SmartyMethodsTests/RegisterModifier/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/SmartyMethodsTests/RegisterModifier/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/SmartyMethodsTests/RegisterModifier/templates_c/dummy.txt b/tests/UnitTests/SmartyMethodsTests/RegisterModifier/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/SmartyMethodsTests/RegisterModifier/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/SmartyMethodsTests/RegisterObject/cache/.gitignore b/tests/UnitTests/SmartyMethodsTests/RegisterObject/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/SmartyMethodsTests/RegisterObject/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/SmartyMethodsTests/RegisterObject/cache/dummy.txt b/tests/UnitTests/SmartyMethodsTests/RegisterObject/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/SmartyMethodsTests/RegisterObject/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/SmartyMethodsTests/RegisterObject/templates_c/.gitignore b/tests/UnitTests/SmartyMethodsTests/RegisterObject/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/SmartyMethodsTests/RegisterObject/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/SmartyMethodsTests/RegisterObject/templates_c/dummy.txt b/tests/UnitTests/SmartyMethodsTests/RegisterObject/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/SmartyMethodsTests/RegisterObject/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/SmartyMethodsTests/TemplateExist/cache/.gitignore b/tests/UnitTests/SmartyMethodsTests/TemplateExist/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/SmartyMethodsTests/TemplateExist/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/SmartyMethodsTests/TemplateExist/cache/dummy.txt b/tests/UnitTests/SmartyMethodsTests/TemplateExist/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/SmartyMethodsTests/TemplateExist/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/SmartyMethodsTests/TemplateExist/templates_c/.gitignore b/tests/UnitTests/SmartyMethodsTests/TemplateExist/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/SmartyMethodsTests/TemplateExist/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/SmartyMethodsTests/TemplateExist/templates_c/dummy.txt b/tests/UnitTests/SmartyMethodsTests/TemplateExist/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/SmartyMethodsTests/TemplateExist/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/Comments/cache/.gitignore b/tests/UnitTests/TemplateSource/Comments/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/Comments/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/Comments/cache/dummy.txt b/tests/UnitTests/TemplateSource/Comments/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/Comments/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/Comments/templates_c/.gitignore b/tests/UnitTests/TemplateSource/Comments/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/Comments/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/Comments/templates_c/dummy.txt b/tests/UnitTests/TemplateSource/Comments/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/Comments/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/Spacing/cache/.gitignore b/tests/UnitTests/TemplateSource/Spacing/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/Spacing/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/Spacing/cache/dummy.txt b/tests/UnitTests/TemplateSource/Spacing/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/Spacing/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/Spacing/templates_c/.gitignore b/tests/UnitTests/TemplateSource/Spacing/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/Spacing/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/Spacing/templates_c/dummy.txt b/tests/UnitTests/TemplateSource/Spacing/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/Spacing/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/Spacing/templates_tmp/.gitignore b/tests/UnitTests/TemplateSource/Spacing/templates_tmp/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/Spacing/templates_tmp/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/Spacing/templates_tmp/dummy.txt b/tests/UnitTests/TemplateSource/Spacing/templates_tmp/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/Spacing/templates_tmp/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/StaticClass/cache/.gitignore b/tests/UnitTests/TemplateSource/StaticClass/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/StaticClass/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/StaticClass/cache/dummy.txt b/tests/UnitTests/TemplateSource/StaticClass/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/StaticClass/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/StaticClass/templates_c/.gitignore b/tests/UnitTests/TemplateSource/StaticClass/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/StaticClass/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/StaticClass/templates_c/dummy.txt b/tests/UnitTests/TemplateSource/StaticClass/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/StaticClass/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Append/cache/.gitignore b/tests/UnitTests/TemplateSource/TagTests/Append/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/TagTests/Append/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/TagTests/Append/cache/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Append/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Append/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Append/templates_c/.gitignore b/tests/UnitTests/TemplateSource/TagTests/Append/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/TagTests/Append/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/TagTests/Append/templates_c/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Append/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Append/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Append/templates_tmp/.gitignore b/tests/UnitTests/TemplateSource/TagTests/Append/templates_tmp/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/TagTests/Append/templates_tmp/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/TagTests/Append/templates_tmp/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Append/templates_tmp/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Append/templates_tmp/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Assign/cache/.gitignore b/tests/UnitTests/TemplateSource/TagTests/Assign/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/TagTests/Assign/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/TagTests/Assign/cache/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Assign/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Assign/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Assign/templates_c/.gitignore b/tests/UnitTests/TemplateSource/TagTests/Assign/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/TagTests/Assign/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/TagTests/Assign/templates_c/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Assign/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Assign/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Assign/templates_tmp/.gitignore b/tests/UnitTests/TemplateSource/TagTests/Assign/templates_tmp/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/TagTests/Assign/templates_tmp/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/TagTests/Assign/templates_tmp/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Assign/templates_tmp/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Assign/templates_tmp/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/BlockPlugin/cache/.gitignore b/tests/UnitTests/TemplateSource/TagTests/BlockPlugin/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/TagTests/BlockPlugin/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/TagTests/BlockPlugin/cache/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/BlockPlugin/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/BlockPlugin/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/BlockPlugin/templates_c/.gitignore b/tests/UnitTests/TemplateSource/TagTests/BlockPlugin/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/TagTests/BlockPlugin/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/TagTests/BlockPlugin/templates_c/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/BlockPlugin/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/BlockPlugin/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/BlockPlugin/templates_tmp/.gitignore b/tests/UnitTests/TemplateSource/TagTests/BlockPlugin/templates_tmp/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/TagTests/BlockPlugin/templates_tmp/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/TagTests/BlockPlugin/templates_tmp/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/BlockPlugin/templates_tmp/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/BlockPlugin/templates_tmp/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/BockExtend/cache/.gitignore b/tests/UnitTests/TemplateSource/TagTests/BockExtend/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/TagTests/BockExtend/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/TagTests/BockExtend/cache/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/BockExtend/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/BockExtend/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/BockExtend/templates_c/.gitignore b/tests/UnitTests/TemplateSource/TagTests/BockExtend/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/TagTests/BockExtend/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/TagTests/BockExtend/templates_c/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/BockExtend/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/BockExtend/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/BockExtend/templates_c/mustcompile/.gitignore b/tests/UnitTests/TemplateSource/TagTests/BockExtend/templates_c/mustcompile/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/TagTests/BockExtend/templates_c/mustcompile/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/TagTests/BockExtend/templates_c/mustcompile/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/BockExtend/templates_c/mustcompile/dummy.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/UnitTests/TemplateSource/TagTests/BockExtend/templates_tmp/.gitignore b/tests/UnitTests/TemplateSource/TagTests/BockExtend/templates_tmp/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/TagTests/BockExtend/templates_tmp/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/TagTests/BockExtend/templates_tmp/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/BockExtend/templates_tmp/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/BockExtend/templates_tmp/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Capture/cache/.gitignore b/tests/UnitTests/TemplateSource/TagTests/Capture/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/TagTests/Capture/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/TagTests/Capture/cache/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Capture/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Capture/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Capture/templates_c/.gitignore b/tests/UnitTests/TemplateSource/TagTests/Capture/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/TagTests/Capture/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/TagTests/Capture/templates_c/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Capture/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Capture/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Capture/templates_tmp/.gitignore b/tests/UnitTests/TemplateSource/TagTests/Capture/templates_tmp/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/TagTests/Capture/templates_tmp/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/TagTests/Capture/templates_tmp/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Capture/templates_tmp/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Capture/templates_tmp/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/CompilerPlugin/cache/.gitignore b/tests/UnitTests/TemplateSource/TagTests/CompilerPlugin/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/TagTests/CompilerPlugin/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/TagTests/CompilerPlugin/cache/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/CompilerPlugin/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/CompilerPlugin/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/CompilerPlugin/templates_c/.gitignore b/tests/UnitTests/TemplateSource/TagTests/CompilerPlugin/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/TagTests/CompilerPlugin/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/TagTests/CompilerPlugin/templates_c/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/CompilerPlugin/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/CompilerPlugin/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/ConfigLoad/cache/.gitignore b/tests/UnitTests/TemplateSource/TagTests/ConfigLoad/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/TagTests/ConfigLoad/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/TagTests/ConfigLoad/cache/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/ConfigLoad/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/ConfigLoad/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/ConfigLoad/templates_c/.gitignore b/tests/UnitTests/TemplateSource/TagTests/ConfigLoad/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/TagTests/ConfigLoad/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/TagTests/ConfigLoad/templates_c/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/ConfigLoad/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/ConfigLoad/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Delimiter/cache/.gitignore b/tests/UnitTests/TemplateSource/TagTests/Delimiter/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/TagTests/Delimiter/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/TagTests/Delimiter/cache/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Delimiter/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Delimiter/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Delimiter/templates_c/.gitignore b/tests/UnitTests/TemplateSource/TagTests/Delimiter/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/TagTests/Delimiter/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/TagTests/Delimiter/templates_c/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Delimiter/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Delimiter/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Eval/cache/.gitignore b/tests/UnitTests/TemplateSource/TagTests/Eval/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/TagTests/Eval/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/TagTests/Eval/cache/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Eval/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Eval/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Eval/templates_c/.gitignore b/tests/UnitTests/TemplateSource/TagTests/Eval/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/TagTests/Eval/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/TagTests/Eval/templates_c/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Eval/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Eval/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/For/cache/.gitignore b/tests/UnitTests/TemplateSource/TagTests/For/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/TagTests/For/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/TagTests/For/cache/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/For/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/For/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/For/templates_c/.gitignore b/tests/UnitTests/TemplateSource/TagTests/For/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/TagTests/For/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/TagTests/For/templates_c/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/For/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/For/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/For/templates_tmp/.gitignore b/tests/UnitTests/TemplateSource/TagTests/For/templates_tmp/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/TagTests/For/templates_tmp/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/TagTests/For/templates_tmp/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/For/templates_tmp/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/For/templates_tmp/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Foreach/cache/.gitignore b/tests/UnitTests/TemplateSource/TagTests/Foreach/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/TagTests/Foreach/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/TagTests/Foreach/cache/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Foreach/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Foreach/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Foreach/templates_c/.gitignore b/tests/UnitTests/TemplateSource/TagTests/Foreach/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/TagTests/Foreach/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/TagTests/Foreach/templates_c/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Foreach/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Foreach/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Foreach/templates_tmp/.gitignore b/tests/UnitTests/TemplateSource/TagTests/Foreach/templates_tmp/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/TagTests/Foreach/templates_tmp/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/TagTests/Foreach/templates_tmp/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Foreach/templates_tmp/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Foreach/templates_tmp/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/FunctionPlugin/cache/.gitignore b/tests/UnitTests/TemplateSource/TagTests/FunctionPlugin/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/TagTests/FunctionPlugin/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/TagTests/FunctionPlugin/cache/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/FunctionPlugin/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/FunctionPlugin/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/FunctionPlugin/templates_c/.gitignore b/tests/UnitTests/TemplateSource/TagTests/FunctionPlugin/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/TagTests/FunctionPlugin/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/TagTests/FunctionPlugin/templates_c/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/FunctionPlugin/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/FunctionPlugin/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/If/cache/.gitignore b/tests/UnitTests/TemplateSource/TagTests/If/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/TagTests/If/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/TagTests/If/cache/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/If/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/If/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/If/templates_c/.gitignore b/tests/UnitTests/TemplateSource/TagTests/If/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/TagTests/If/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/TagTests/If/templates_c/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/If/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/If/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/If/templates_tmp/.gitignore b/tests/UnitTests/TemplateSource/TagTests/If/templates_tmp/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/TagTests/If/templates_tmp/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/TagTests/If/templates_tmp/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/If/templates_tmp/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/If/templates_tmp/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Include/cache/.gitignore b/tests/UnitTests/TemplateSource/TagTests/Include/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/TagTests/Include/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/TagTests/Include/cache/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Include/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Include/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Include/templates_c/.gitignore b/tests/UnitTests/TemplateSource/TagTests/Include/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/TagTests/Include/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/TagTests/Include/templates_c/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Include/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Include/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Include/templates_tmp/.gitignore b/tests/UnitTests/TemplateSource/TagTests/Include/templates_tmp/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/TagTests/Include/templates_tmp/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/TagTests/Include/templates_tmp/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Include/templates_tmp/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Include/templates_tmp/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/IncludePhp/cache/.gitignore b/tests/UnitTests/TemplateSource/TagTests/IncludePhp/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/TagTests/IncludePhp/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/TagTests/IncludePhp/cache/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/IncludePhp/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/IncludePhp/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/IncludePhp/templates_c/.gitignore b/tests/UnitTests/TemplateSource/TagTests/IncludePhp/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/TagTests/IncludePhp/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/TagTests/IncludePhp/templates_c/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/IncludePhp/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/IncludePhp/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Insert/cache/.gitignore b/tests/UnitTests/TemplateSource/TagTests/Insert/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/TagTests/Insert/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/TagTests/Insert/cache/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Insert/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Insert/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Insert/templates_c/.gitignore b/tests/UnitTests/TemplateSource/TagTests/Insert/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/TagTests/Insert/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/TagTests/Insert/templates_c/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Insert/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Insert/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Insert/templates_tmp/.gitignore b/tests/UnitTests/TemplateSource/TagTests/Insert/templates_tmp/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/TagTests/Insert/templates_tmp/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/TagTests/Insert/templates_tmp/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Insert/templates_tmp/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Insert/templates_tmp/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Literal/cache/.gitignore b/tests/UnitTests/TemplateSource/TagTests/Literal/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/TagTests/Literal/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/TagTests/Literal/cache/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Literal/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Literal/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Literal/templates_c/.gitignore b/tests/UnitTests/TemplateSource/TagTests/Literal/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/TagTests/Literal/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/TagTests/Literal/templates_c/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Literal/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Literal/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/MakeNocache/cache/.gitignore b/tests/UnitTests/TemplateSource/TagTests/MakeNocache/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/TagTests/MakeNocache/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/TagTests/MakeNocache/cache/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/MakeNocache/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/MakeNocache/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/MakeNocache/templates_c/.gitignore b/tests/UnitTests/TemplateSource/TagTests/MakeNocache/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/TagTests/MakeNocache/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/TagTests/MakeNocache/templates_c/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/MakeNocache/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/MakeNocache/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Nocache/cache/.gitignore b/tests/UnitTests/TemplateSource/TagTests/Nocache/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/TagTests/Nocache/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/TagTests/Nocache/cache/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Nocache/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Nocache/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Nocache/templates_c/.gitignore b/tests/UnitTests/TemplateSource/TagTests/Nocache/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/TagTests/Nocache/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/TagTests/Nocache/templates_c/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Nocache/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Nocache/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Php/cache/.gitignore b/tests/UnitTests/TemplateSource/TagTests/Php/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/TagTests/Php/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_ALLOW_asp_tpl_3/ea/3f/ab/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_ALLOW_asp_tpl_3/ea/3f/ab/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_ALLOW_asp_tpl_3/ea/3f/ab/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_ALLOW_php2_tpl_3/29/c4/f2/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_ALLOW_php2_tpl_3/29/c4/f2/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_ALLOW_php2_tpl_3/29/c4/f2/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_ALLOW_php_block_comment_tpl_3/8b/3c/38/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_ALLOW_php_block_comment_tpl_3/8b/3c/38/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_ALLOW_php_block_comment_tpl_3/8b/3c/38/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_ALLOW_php_line_comment_tpl_3/db/b0/18/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_ALLOW_php_line_comment_tpl_3/db/b0/18/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_ALLOW_php_line_comment_tpl_3/db/b0/18/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_ALLOW_php_tpl_3/cd/1a/7e/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_ALLOW_php_tpl_3/cd/1a/7e/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_ALLOW_php_tpl_3/cd/1a/7e/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_ALLOW_phptag_block_comment_tpl_3/59/5e/e8/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_ALLOW_phptag_block_comment_tpl_3/59/5e/e8/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_ALLOW_phptag_block_comment_tpl_3/59/5e/e8/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_ALLOW_phptag_line_comment_tpl_3/9f/3e/92/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_ALLOW_phptag_line_comment_tpl_3/9f/3e/92/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_ALLOW_phptag_line_comment_tpl_3/9f/3e/92/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_ALLOW_phptag_literal_tpl_3/ac/c4/1a/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_ALLOW_phptag_literal_tpl_3/ac/c4/1a/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_ALLOW_phptag_literal_tpl_3/ac/c4/1a/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_ALLOW_phptag_tpl_3/37/9e/e6/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_ALLOW_phptag_tpl_3/37/9e/e6/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_ALLOW_phptag_tpl_3/37/9e/e6/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_ALLOW_script_tpl_3/06/ed/7e/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_ALLOW_script_tpl_3/06/ed/7e/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_ALLOW_script_tpl_3/06/ed/7e/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_PASSTHRU_asp_tpl_0/ea/3f/ab/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_PASSTHRU_asp_tpl_0/ea/3f/ab/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_PASSTHRU_asp_tpl_0/ea/3f/ab/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_PASSTHRU_php2_tpl_0/29/c4/f2/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_PASSTHRU_php2_tpl_0/29/c4/f2/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_PASSTHRU_php2_tpl_0/29/c4/f2/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_PASSTHRU_php_block_comment_tpl_0/8b/3c/38/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_PASSTHRU_php_block_comment_tpl_0/8b/3c/38/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_PASSTHRU_php_block_comment_tpl_0/8b/3c/38/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_PASSTHRU_php_line_comment_tpl_0/db/b0/18/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_PASSTHRU_php_line_comment_tpl_0/db/b0/18/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_PASSTHRU_php_line_comment_tpl_0/db/b0/18/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_PASSTHRU_php_tpl_0/cd/1a/7e/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_PASSTHRU_php_tpl_0/cd/1a/7e/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_PASSTHRU_php_tpl_0/cd/1a/7e/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_PASSTHRU_script_tpl_0/06/ed/7e/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_PASSTHRU_script_tpl_0/06/ed/7e/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_PASSTHRU_script_tpl_0/06/ed/7e/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_QUOTE_asp_tpl_1/ea/3f/ab/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_QUOTE_asp_tpl_1/ea/3f/ab/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_QUOTE_asp_tpl_1/ea/3f/ab/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_QUOTE_php2_tpl_1/29/c4/f2/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_QUOTE_php2_tpl_1/29/c4/f2/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_QUOTE_php2_tpl_1/29/c4/f2/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_QUOTE_php_block_comment_tpl_1/8b/3c/38/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_QUOTE_php_block_comment_tpl_1/8b/3c/38/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_QUOTE_php_block_comment_tpl_1/8b/3c/38/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_QUOTE_php_line_comment_tpl_1/db/b0/18/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_QUOTE_php_line_comment_tpl_1/db/b0/18/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_QUOTE_php_line_comment_tpl_1/db/b0/18/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_QUOTE_php_tpl_1/cd/1a/7e/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_QUOTE_php_tpl_1/cd/1a/7e/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_QUOTE_php_tpl_1/cd/1a/7e/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_QUOTE_script_tpl_1/06/ed/7e/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_QUOTE_script_tpl_1/06/ed/7e/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_QUOTE_script_tpl_1/06/ed/7e/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_REMOVE_asp_tpl_2/ea/3f/ab/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_REMOVE_asp_tpl_2/ea/3f/ab/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_REMOVE_asp_tpl_2/ea/3f/ab/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_REMOVE_php2_tpl_2/29/c4/f2/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_REMOVE_php2_tpl_2/29/c4/f2/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_REMOVE_php2_tpl_2/29/c4/f2/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_REMOVE_php_block_comment_tpl_2/8b/3c/38/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_REMOVE_php_block_comment_tpl_2/8b/3c/38/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_REMOVE_php_block_comment_tpl_2/8b/3c/38/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_REMOVE_php_line_comment_tpl_2/db/b0/18/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_REMOVE_php_line_comment_tpl_2/db/b0/18/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_REMOVE_php_line_comment_tpl_2/db/b0/18/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_REMOVE_php_tpl_2/cd/1a/7e/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_REMOVE_php_tpl_2/cd/1a/7e/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_REMOVE_php_tpl_2/cd/1a/7e/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_REMOVE_script_tpl_2/06/ed/7e/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_REMOVE_script_tpl_2/06/ed/7e/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Php/cache/PHP_REMOVE_script_tpl_2/06/ed/7e/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Php/cache/Tag_nocache/bc/55/66/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Php/cache/Tag_nocache/bc/55/66/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Php/cache/Tag_nocache/bc/55/66/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Php/cache/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Php/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Php/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/.gitignore b/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_ALLOW_asp_tpl_3/5b/3f/86/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_ALLOW_asp_tpl_3/5b/3f/86/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_ALLOW_asp_tpl_3/5b/3f/86/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_ALLOW_php2_tpl_3/8e/21/07/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_ALLOW_php2_tpl_3/8e/21/07/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_ALLOW_php2_tpl_3/8e/21/07/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_ALLOW_php_block_comment_tpl_3/ef/5c/4b/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_ALLOW_php_block_comment_tpl_3/ef/5c/4b/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_ALLOW_php_block_comment_tpl_3/ef/5c/4b/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_ALLOW_php_line_comment_tpl_3/6a/95/aa/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_ALLOW_php_line_comment_tpl_3/6a/95/aa/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_ALLOW_php_line_comment_tpl_3/6a/95/aa/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_ALLOW_php_tpl_3/de/87/f4/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_ALLOW_php_tpl_3/de/87/f4/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_ALLOW_php_tpl_3/de/87/f4/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_ALLOW_phptag_block_comment_tpl_3/56/75/8d/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_ALLOW_phptag_block_comment_tpl_3/56/75/8d/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_ALLOW_phptag_block_comment_tpl_3/56/75/8d/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_ALLOW_phptag_line_comment_tpl_3/fd/2a/b7/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_ALLOW_phptag_line_comment_tpl_3/fd/2a/b7/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_ALLOW_phptag_line_comment_tpl_3/fd/2a/b7/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_ALLOW_phptag_literal_tpl_3/26/72/1e/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_ALLOW_phptag_literal_tpl_3/26/72/1e/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_ALLOW_phptag_literal_tpl_3/26/72/1e/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_ALLOW_phptag_tpl_3/c8/c7/c5/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_ALLOW_phptag_tpl_3/c8/c7/c5/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_ALLOW_phptag_tpl_3/c8/c7/c5/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_ALLOW_script_tpl_3/41/7c/8a/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_ALLOW_script_tpl_3/41/7c/8a/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_ALLOW_script_tpl_3/41/7c/8a/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_PASSTHRU_asp_tpl_0/5b/3f/86/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_PASSTHRU_asp_tpl_0/5b/3f/86/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_PASSTHRU_asp_tpl_0/5b/3f/86/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_PASSTHRU_php2_tpl_0/8e/21/07/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_PASSTHRU_php2_tpl_0/8e/21/07/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_PASSTHRU_php2_tpl_0/8e/21/07/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_PASSTHRU_php_block_comment_tpl_0/ef/5c/4b/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_PASSTHRU_php_block_comment_tpl_0/ef/5c/4b/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_PASSTHRU_php_block_comment_tpl_0/ef/5c/4b/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_PASSTHRU_php_line_comment_tpl_0/6a/95/aa/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_PASSTHRU_php_line_comment_tpl_0/6a/95/aa/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_PASSTHRU_php_line_comment_tpl_0/6a/95/aa/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_PASSTHRU_php_tpl_0/de/87/f4/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_PASSTHRU_php_tpl_0/de/87/f4/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_PASSTHRU_php_tpl_0/de/87/f4/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_PASSTHRU_script_tpl_0/41/7c/8a/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_PASSTHRU_script_tpl_0/41/7c/8a/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_PASSTHRU_script_tpl_0/41/7c/8a/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_QUOTE_asp_tpl_1/5b/3f/86/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_QUOTE_asp_tpl_1/5b/3f/86/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_QUOTE_asp_tpl_1/5b/3f/86/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_QUOTE_php2_tpl_1/8e/21/07/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_QUOTE_php2_tpl_1/8e/21/07/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_QUOTE_php2_tpl_1/8e/21/07/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_QUOTE_php_block_comment_tpl_1/ef/5c/4b/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_QUOTE_php_block_comment_tpl_1/ef/5c/4b/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_QUOTE_php_block_comment_tpl_1/ef/5c/4b/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_QUOTE_php_line_comment_tpl_1/6a/95/aa/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_QUOTE_php_line_comment_tpl_1/6a/95/aa/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_QUOTE_php_line_comment_tpl_1/6a/95/aa/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_QUOTE_php_tpl_1/de/87/f4/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_QUOTE_php_tpl_1/de/87/f4/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_QUOTE_php_tpl_1/de/87/f4/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_QUOTE_script_tpl_1/41/7c/8a/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_QUOTE_script_tpl_1/41/7c/8a/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_QUOTE_script_tpl_1/41/7c/8a/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_REMOVE_asp_tpl_2/5b/3f/86/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_REMOVE_asp_tpl_2/5b/3f/86/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_REMOVE_asp_tpl_2/5b/3f/86/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_REMOVE_php2_tpl_2/8e/21/07/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_REMOVE_php2_tpl_2/8e/21/07/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_REMOVE_php2_tpl_2/8e/21/07/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_REMOVE_php_block_comment_tpl_2/ef/5c/4b/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_REMOVE_php_block_comment_tpl_2/ef/5c/4b/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_REMOVE_php_block_comment_tpl_2/ef/5c/4b/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_REMOVE_php_line_comment_tpl_2/6a/95/aa/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_REMOVE_php_line_comment_tpl_2/6a/95/aa/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_REMOVE_php_line_comment_tpl_2/6a/95/aa/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_REMOVE_php_tpl_2/de/87/f4/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_REMOVE_php_tpl_2/de/87/f4/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_REMOVE_php_tpl_2/de/87/f4/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_REMOVE_script_tpl_2/41/7c/8a/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_REMOVE_script_tpl_2/41/7c/8a/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/PHP_REMOVE_script_tpl_2/41/7c/8a/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/Tag_nocache/80/9d/fb/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/Tag_nocache/80/9d/fb/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/Tag_nocache/80/9d/fb/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/testPHPfooPlugin/ab/4c/1d/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/testPHPfooPlugin/ab/4c/1d/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Php/templates_c/testPHPfooPlugin/ab/4c/1d/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/PluginBlock/cache/.gitignore b/tests/UnitTests/TemplateSource/TagTests/PluginBlock/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/TagTests/PluginBlock/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/TagTests/PluginBlock/cache/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/PluginBlock/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/PluginBlock/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/PluginBlock/templates_c/.gitignore b/tests/UnitTests/TemplateSource/TagTests/PluginBlock/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/TagTests/PluginBlock/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/TagTests/PluginBlock/templates_c/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/PluginBlock/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/PluginBlock/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/PluginFunction/cache/.gitignore b/tests/UnitTests/TemplateSource/TagTests/PluginFunction/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/TagTests/PluginFunction/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/TagTests/PluginFunction/cache/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/PluginFunction/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/PluginFunction/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/PluginFunction/templates_c/.gitignore b/tests/UnitTests/TemplateSource/TagTests/PluginFunction/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/TagTests/PluginFunction/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/TagTests/PluginFunction/templates_c/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/PluginFunction/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/PluginFunction/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/PluginModifier/cache/.gitignore b/tests/UnitTests/TemplateSource/TagTests/PluginModifier/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/TagTests/PluginModifier/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/TagTests/PluginModifier/cache/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/PluginModifier/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/PluginModifier/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/PluginModifier/templates_c/.gitignore b/tests/UnitTests/TemplateSource/TagTests/PluginModifier/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/TagTests/PluginModifier/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/TagTests/PluginModifier/templates_c/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/PluginModifier/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/PluginModifier/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Section/cache/.gitignore b/tests/UnitTests/TemplateSource/TagTests/Section/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/TagTests/Section/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/TagTests/Section/cache/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Section/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Section/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Section/templates_c/.gitignore b/tests/UnitTests/TemplateSource/TagTests/Section/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/TagTests/Section/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/TagTests/Section/templates_c/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Section/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Section/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Section/templates_tmp/.gitignore b/tests/UnitTests/TemplateSource/TagTests/Section/templates_tmp/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/TagTests/Section/templates_tmp/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/TagTests/Section/templates_tmp/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Section/templates_tmp/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Section/templates_tmp/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/SetFilter/cache/.gitignore b/tests/UnitTests/TemplateSource/TagTests/SetFilter/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/TagTests/SetFilter/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/TagTests/SetFilter/cache/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/SetFilter/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/SetFilter/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/SetFilter/templates_c/.gitignore b/tests/UnitTests/TemplateSource/TagTests/SetFilter/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/TagTests/SetFilter/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/TagTests/SetFilter/templates_c/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/SetFilter/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/SetFilter/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Strip/templates_c/.gitignore b/tests/UnitTests/TemplateSource/TagTests/Strip/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/TagTests/Strip/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/TagTests/Strip/templates_c/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Strip/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Strip/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/Strip/templates_tmp/.gitignore b/tests/UnitTests/TemplateSource/TagTests/Strip/templates_tmp/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/TagTests/Strip/templates_tmp/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/TagTests/Strip/templates_tmp/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/Strip/templates_tmp/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/Strip/templates_tmp/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/TemplateFunction/cache/.gitignore b/tests/UnitTests/TemplateSource/TagTests/TemplateFunction/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/TagTests/TemplateFunction/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/TagTests/TemplateFunction/cache/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/TemplateFunction/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/TemplateFunction/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/TemplateFunction/templates_c/.gitignore b/tests/UnitTests/TemplateSource/TagTests/TemplateFunction/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/TagTests/TemplateFunction/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/TagTests/TemplateFunction/templates_c/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/TemplateFunction/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/TemplateFunction/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/TemplateFunction/templates_tmp/.gitignore b/tests/UnitTests/TemplateSource/TagTests/TemplateFunction/templates_tmp/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/TagTests/TemplateFunction/templates_tmp/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/TagTests/TemplateFunction/templates_tmp/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/TemplateFunction/templates_tmp/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/TemplateFunction/templates_tmp/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/While/cache/.gitignore b/tests/UnitTests/TemplateSource/TagTests/While/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/TagTests/While/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/TagTests/While/cache/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/While/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/While/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/While/templates_c/.gitignore b/tests/UnitTests/TemplateSource/TagTests/While/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/TagTests/While/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/TagTests/While/templates_c/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/While/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/While/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/While/templates_tmp/.gitignore b/tests/UnitTests/TemplateSource/TagTests/While/templates_tmp/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/TagTests/While/templates_tmp/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/TagTests/While/templates_tmp/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/While/templates_tmp/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/While/templates_tmp/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/_Attributes/cache/.gitignore b/tests/UnitTests/TemplateSource/TagTests/_Attributes/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/TagTests/_Attributes/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/TagTests/_Attributes/cache/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/_Attributes/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/_Attributes/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/_Attributes/templates_c/.gitignore b/tests/UnitTests/TemplateSource/TagTests/_Attributes/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/TagTests/_Attributes/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/TagTests/_Attributes/templates_c/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/_Attributes/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/_Attributes/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/_Error/cache/.gitignore b/tests/UnitTests/TemplateSource/TagTests/_Error/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/TagTests/_Error/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/TagTests/_Error/cache/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/_Error/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/_Error/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/_Error/templates_c/.gitignore b/tests/UnitTests/TemplateSource/TagTests/_Error/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/TagTests/_Error/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/TagTests/_Error/templates_c/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/_Error/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/_Error/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/_Print/cache/.gitignore b/tests/UnitTests/TemplateSource/TagTests/_Print/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/TagTests/_Print/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/TagTests/_Print/cache/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/_Print/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/_Print/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/_Print/templates_c/.gitignore b/tests/UnitTests/TemplateSource/TagTests/_Print/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/TagTests/_Print/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/TagTests/_Print/templates_c/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/_Print/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/_Print/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/_Print/templates_tmp/.gitignore b/tests/UnitTests/TemplateSource/TagTests/_Print/templates_tmp/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/TagTests/_Print/templates_tmp/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/TagTests/_Print/templates_tmp/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/_Print/templates_tmp/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/_Print/templates_tmp/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/break/cache/.gitignore b/tests/UnitTests/TemplateSource/TagTests/break/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/TagTests/break/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/TagTests/break/cache/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/break/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/break/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/TagTests/break/templates_c/.gitignore b/tests/UnitTests/TemplateSource/TagTests/break/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/TagTests/break/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/TagTests/break/templates_c/dummy.txt b/tests/UnitTests/TemplateSource/TagTests/break/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/TagTests/break/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/ValueTests/Array/cache/.gitignore b/tests/UnitTests/TemplateSource/ValueTests/Array/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/ValueTests/Array/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/ValueTests/Array/cache/dummy.txt b/tests/UnitTests/TemplateSource/ValueTests/Array/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/ValueTests/Array/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/ValueTests/Array/templates_c/.gitignore b/tests/UnitTests/TemplateSource/ValueTests/Array/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/ValueTests/Array/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/ValueTests/Array/templates_c/dummy.txt b/tests/UnitTests/TemplateSource/ValueTests/Array/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/ValueTests/Array/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/ValueTests/Array/templates_tmp/.gitignore b/tests/UnitTests/TemplateSource/ValueTests/Array/templates_tmp/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/ValueTests/Array/templates_tmp/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/ValueTests/Array/templates_tmp/dummy.txt b/tests/UnitTests/TemplateSource/ValueTests/Array/templates_tmp/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/ValueTests/Array/templates_tmp/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/ValueTests/BoolenNull/cache/.gitignore b/tests/UnitTests/TemplateSource/ValueTests/BoolenNull/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/ValueTests/BoolenNull/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/ValueTests/BoolenNull/cache/dummy.txt b/tests/UnitTests/TemplateSource/ValueTests/BoolenNull/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/ValueTests/BoolenNull/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/ValueTests/BoolenNull/templates/.gitignore b/tests/UnitTests/TemplateSource/ValueTests/BoolenNull/templates/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/ValueTests/BoolenNull/templates/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/ValueTests/BoolenNull/templates/dummy.txt b/tests/UnitTests/TemplateSource/ValueTests/BoolenNull/templates/dummy.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/UnitTests/TemplateSource/ValueTests/BoolenNull/templates_c/.gitignore b/tests/UnitTests/TemplateSource/ValueTests/BoolenNull/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/ValueTests/BoolenNull/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/ValueTests/BoolenNull/templates_c/dummy.txt b/tests/UnitTests/TemplateSource/ValueTests/BoolenNull/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/ValueTests/BoolenNull/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/ValueTests/ConstantTests/cache/.gitignore b/tests/UnitTests/TemplateSource/ValueTests/ConstantTests/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/ValueTests/ConstantTests/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/ValueTests/ConstantTests/cache/dummy.txt b/tests/UnitTests/TemplateSource/ValueTests/ConstantTests/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/ValueTests/ConstantTests/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/ValueTests/ConstantTests/templates_c/.gitignore b/tests/UnitTests/TemplateSource/ValueTests/ConstantTests/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/ValueTests/ConstantTests/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/ValueTests/ConstantTests/templates_c/dummy.txt b/tests/UnitTests/TemplateSource/ValueTests/ConstantTests/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/ValueTests/ConstantTests/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/ValueTests/DoubleQuoted/cache/.gitignore b/tests/UnitTests/TemplateSource/ValueTests/DoubleQuoted/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/ValueTests/DoubleQuoted/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/ValueTests/DoubleQuoted/cache/dummy.txt b/tests/UnitTests/TemplateSource/ValueTests/DoubleQuoted/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/ValueTests/DoubleQuoted/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/ValueTests/DoubleQuoted/templates_c/.gitignore b/tests/UnitTests/TemplateSource/ValueTests/DoubleQuoted/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/ValueTests/DoubleQuoted/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/ValueTests/DoubleQuoted/templates_c/dummy.txt b/tests/UnitTests/TemplateSource/ValueTests/DoubleQuoted/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/ValueTests/DoubleQuoted/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/ValueTests/DoubleQuoted/templates_tmp/.gitignore b/tests/UnitTests/TemplateSource/ValueTests/DoubleQuoted/templates_tmp/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/ValueTests/DoubleQuoted/templates_tmp/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/ValueTests/DoubleQuoted/templates_tmp/dummy.txt b/tests/UnitTests/TemplateSource/ValueTests/DoubleQuoted/templates_tmp/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/ValueTests/DoubleQuoted/templates_tmp/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/ValueTests/Math/cache/.gitignore b/tests/UnitTests/TemplateSource/ValueTests/Math/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/ValueTests/Math/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/ValueTests/Math/cache/dummy.txt b/tests/UnitTests/TemplateSource/ValueTests/Math/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/ValueTests/Math/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/ValueTests/Math/templates_c/.gitignore b/tests/UnitTests/TemplateSource/ValueTests/Math/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/ValueTests/Math/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/ValueTests/Math/templates_c/dummy.txt b/tests/UnitTests/TemplateSource/ValueTests/Math/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/ValueTests/Math/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/ValueTests/Modifier/cache/.gitignore b/tests/UnitTests/TemplateSource/ValueTests/Modifier/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/ValueTests/Modifier/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/ValueTests/Modifier/cache/dummy.txt b/tests/UnitTests/TemplateSource/ValueTests/Modifier/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/ValueTests/Modifier/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/ValueTests/Modifier/templates_c/.gitignore b/tests/UnitTests/TemplateSource/ValueTests/Modifier/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/ValueTests/Modifier/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/ValueTests/Modifier/templates_c/dummy.txt b/tests/UnitTests/TemplateSource/ValueTests/Modifier/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/ValueTests/Modifier/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/ValueTests/Modifier/templates_tmp/.gitignore b/tests/UnitTests/TemplateSource/ValueTests/Modifier/templates_tmp/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/ValueTests/Modifier/templates_tmp/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/ValueTests/Modifier/templates_tmp/dummy.txt b/tests/UnitTests/TemplateSource/ValueTests/Modifier/templates_tmp/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/ValueTests/Modifier/templates_tmp/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/ValueTests/Objects/cache/.gitignore b/tests/UnitTests/TemplateSource/ValueTests/Objects/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/ValueTests/Objects/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/ValueTests/Objects/cache/dummy.txt b/tests/UnitTests/TemplateSource/ValueTests/Objects/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/ValueTests/Objects/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/ValueTests/Objects/templates_c/.gitignore b/tests/UnitTests/TemplateSource/ValueTests/Objects/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/ValueTests/Objects/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/ValueTests/Objects/templates_c/dummy.txt b/tests/UnitTests/TemplateSource/ValueTests/Objects/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/ValueTests/Objects/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/ValueTests/PHPfunctions/cache/.gitignore b/tests/UnitTests/TemplateSource/ValueTests/PHPfunctions/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/ValueTests/PHPfunctions/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/ValueTests/PHPfunctions/cache/dummy.txt b/tests/UnitTests/TemplateSource/ValueTests/PHPfunctions/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/ValueTests/PHPfunctions/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/ValueTests/PHPfunctions/templates_c/.gitignore b/tests/UnitTests/TemplateSource/ValueTests/PHPfunctions/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/ValueTests/PHPfunctions/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/ValueTests/PHPfunctions/templates_c/dummy.txt b/tests/UnitTests/TemplateSource/ValueTests/PHPfunctions/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/ValueTests/PHPfunctions/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/ValueTests/SingleQouted/cache/.gitignore b/tests/UnitTests/TemplateSource/ValueTests/SingleQouted/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/ValueTests/SingleQouted/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/ValueTests/SingleQouted/cache/dummy.txt b/tests/UnitTests/TemplateSource/ValueTests/SingleQouted/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/ValueTests/SingleQouted/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/ValueTests/SingleQouted/templates_c/.gitignore b/tests/UnitTests/TemplateSource/ValueTests/SingleQouted/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/ValueTests/SingleQouted/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/ValueTests/SingleQouted/templates_c/dummy.txt b/tests/UnitTests/TemplateSource/ValueTests/SingleQouted/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/ValueTests/SingleQouted/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Constant/cache/.gitignore b/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Constant/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Constant/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Constant/cache/dummy.txt b/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Constant/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Constant/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Constant/templates_c/.gitignore b/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Constant/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Constant/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Constant/templates_c/dummy.txt b/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Constant/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Constant/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Cookie/cache/.gitignore b/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Cookie/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Cookie/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Cookie/cache/dummy.txt b/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Cookie/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Cookie/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Cookie/templates_c/.gitignore b/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Cookie/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Cookie/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Cookie/templates_c/dummy.txt b/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Cookie/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Cookie/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Delimiter/cache/.gitignore b/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Delimiter/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Delimiter/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Delimiter/cache/dummy.txt b/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Delimiter/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Delimiter/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Delimiter/templates_c/.gitignore b/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Delimiter/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Delimiter/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Delimiter/templates_c/dummy.txt b/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Delimiter/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Delimiter/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Error/cache/.gitignore b/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Error/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Error/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Error/cache/dummy.txt b/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Error/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Error/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Error/templates_c/.gitignore b/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Error/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Error/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Error/templates_c/dummy.txt b/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Error/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Error/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Now/cache/.gitignore b/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Now/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Now/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Now/cache/dummy.txt b/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Now/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Now/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Now/templates_c/.gitignore b/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Now/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Now/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Now/templates_c/dummy.txt b/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Now/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Now/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Post/cache/.gitignore b/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Post/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Post/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Post/cache/dummy.txt b/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Post/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Post/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Post/templates_c/.gitignore b/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Post/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Post/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Post/templates_c/dummy.txt b/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Post/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Post/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/TemplateObject/cache/.gitignore b/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/TemplateObject/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/TemplateObject/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/TemplateObject/cache/dummy.txt b/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/TemplateObject/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/TemplateObject/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/TemplateObject/dummy.txt b/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/TemplateObject/dummy.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/TemplateObject/templates_c/.gitignore b/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/TemplateObject/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/TemplateObject/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/TemplateObject/templates_c/dummy.txt b/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/TemplateObject/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/TemplateObject/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Version/cache/.gitignore b/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Version/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Version/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Version/cache/dummy.txt b/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Version/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Version/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Version/templates_c/.gitignore b/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Version/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Version/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Version/templates_c/dummy.txt b/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Version/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/ValueTests/SmartySpecialVars/Version/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/ValueTests/Variables/Stream/cache/.gitignore b/tests/UnitTests/TemplateSource/ValueTests/Variables/Stream/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/ValueTests/Variables/Stream/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/ValueTests/Variables/Stream/cache/dummy.txt b/tests/UnitTests/TemplateSource/ValueTests/Variables/Stream/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/ValueTests/Variables/Stream/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/ValueTests/Variables/Stream/templates_c/.gitignore b/tests/UnitTests/TemplateSource/ValueTests/Variables/Stream/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/ValueTests/Variables/Stream/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/ValueTests/Variables/Stream/templates_c/dummy.txt b/tests/UnitTests/TemplateSource/ValueTests/Variables/Stream/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/ValueTests/Variables/Stream/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/ValueTests/Variables/VariableVariable/cache/.gitignore b/tests/UnitTests/TemplateSource/ValueTests/Variables/VariableVariable/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/ValueTests/Variables/VariableVariable/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/ValueTests/Variables/VariableVariable/cache/dummy.txt b/tests/UnitTests/TemplateSource/ValueTests/Variables/VariableVariable/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/ValueTests/Variables/VariableVariable/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/ValueTests/Variables/VariableVariable/templates_c/.gitignore b/tests/UnitTests/TemplateSource/ValueTests/Variables/VariableVariable/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/ValueTests/Variables/VariableVariable/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/ValueTests/Variables/VariableVariable/templates_c/dummy.txt b/tests/UnitTests/TemplateSource/ValueTests/Variables/VariableVariable/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/ValueTests/Variables/VariableVariable/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/X_Scopes/cache/.gitignore b/tests/UnitTests/TemplateSource/X_Scopes/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/X_Scopes/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/X_Scopes/cache/dummy.txt b/tests/UnitTests/TemplateSource/X_Scopes/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/X_Scopes/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/X_Scopes/templates_c/.gitignore b/tests/UnitTests/TemplateSource/X_Scopes/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/X_Scopes/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/X_Scopes/templates_c/dummy.txt b/tests/UnitTests/TemplateSource/X_Scopes/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/X_Scopes/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/X_Scopes/templates_tmp/.gitignore b/tests/UnitTests/TemplateSource/X_Scopes/templates_tmp/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/X_Scopes/templates_tmp/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/X_Scopes/templates_tmp/dummy.txt b/tests/UnitTests/TemplateSource/X_Scopes/templates_tmp/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/X_Scopes/templates_tmp/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/Xml/cache/.gitignore b/tests/UnitTests/TemplateSource/Xml/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/Xml/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/Xml/cache/dummy.txt b/tests/UnitTests/TemplateSource/Xml/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/Xml/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/Xml/templates_c/.gitignore b/tests/UnitTests/TemplateSource/Xml/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/Xml/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/Xml/templates_c/dummy.txt b/tests/UnitTests/TemplateSource/Xml/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/Xml/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/_Issues/327/cache/.gitignore b/tests/UnitTests/TemplateSource/_Issues/327/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/_Issues/327/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/_Issues/327/cache/dummy.txt b/tests/UnitTests/TemplateSource/_Issues/327/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/_Issues/327/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/_Issues/327/templates_c/.gitignore b/tests/UnitTests/TemplateSource/_Issues/327/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/_Issues/327/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/_Issues/327/templates_c/dummy.txt b/tests/UnitTests/TemplateSource/_Issues/327/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/_Issues/327/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/_Issues/419/cache/.gitignore b/tests/UnitTests/TemplateSource/_Issues/419/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/_Issues/419/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/_Issues/419/cache/dummy.txt b/tests/UnitTests/TemplateSource/_Issues/419/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/_Issues/419/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/_Issues/419/templates_c/.gitignore b/tests/UnitTests/TemplateSource/_Issues/419/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/_Issues/419/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/_Issues/419/templates_c/dummy.txt b/tests/UnitTests/TemplateSource/_Issues/419/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/_Issues/419/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/_Issues/422/cache/.gitignore b/tests/UnitTests/TemplateSource/_Issues/422/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/_Issues/422/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/_Issues/422/cache/dummy.txt b/tests/UnitTests/TemplateSource/_Issues/422/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/_Issues/422/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/_Issues/422/templates_c/.gitignore b/tests/UnitTests/TemplateSource/_Issues/422/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/_Issues/422/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/_Issues/422/templates_c/dummy.txt b/tests/UnitTests/TemplateSource/_Issues/422/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/_Issues/422/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/_Issues/428/cache/.gitignore b/tests/UnitTests/TemplateSource/_Issues/428/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/_Issues/428/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/_Issues/428/cache/dummy.txt b/tests/UnitTests/TemplateSource/_Issues/428/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/_Issues/428/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/_Issues/428/templates_c/.gitignore b/tests/UnitTests/TemplateSource/_Issues/428/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/_Issues/428/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/_Issues/428/templates_c/dummy.txt b/tests/UnitTests/TemplateSource/_Issues/428/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/_Issues/428/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/_Issues/topic26878/cache/.gitignore b/tests/UnitTests/TemplateSource/_Issues/topic26878/cache/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/_Issues/topic26878/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/_Issues/topic26878/cache/dummy.txt b/tests/UnitTests/TemplateSource/_Issues/topic26878/cache/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/_Issues/topic26878/cache/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/_Issues/topic26878/templates_c/.gitignore b/tests/UnitTests/TemplateSource/_Issues/topic26878/templates_c/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/_Issues/topic26878/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/_Issues/topic26878/templates_c/dummy.txt b/tests/UnitTests/TemplateSource/_Issues/topic26878/templates_c/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/_Issues/topic26878/templates_c/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/UnitTests/TemplateSource/_Issues/topic26878/templates_tmp/.gitignore b/tests/UnitTests/TemplateSource/_Issues/topic26878/templates_tmp/.gitignore new file mode 100644 index 00000000..d88cc144 --- /dev/null +++ b/tests/UnitTests/TemplateSource/_Issues/topic26878/templates_tmp/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* diff --git a/tests/UnitTests/TemplateSource/_Issues/topic26878/templates_tmp/dummy.txt b/tests/UnitTests/TemplateSource/_Issues/topic26878/templates_tmp/dummy.txt deleted file mode 100644 index 2995a4d0..00000000 --- a/tests/UnitTests/TemplateSource/_Issues/topic26878/templates_tmp/dummy.txt +++ /dev/null @@ -1 +0,0 @@ -dummy \ No newline at end of file diff --git a/tests/cache/.gitignore b/tests/cache/.gitignore new file mode 100644 index 00000000..1d34e205 --- /dev/null +++ b/tests/cache/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* \ No newline at end of file diff --git a/tests/cache/dummy.txt b/tests/cache/dummy.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/composer.json b/tests/composer.json deleted file mode 100644 index 6202958c..00000000 --- a/tests/composer.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "name": "smarty/smarty-phpunit", - "type": "library", - "description": "Smarty - the compiling PHP template engine PHPUnit tests", - "keywords": ["templating"], - "homepage": "http://www.smarty.net", - "license": "LGPL-3.0", - "authors": [ - { - "name": "Monte Ohrt", - "email": "monte@ohrt.com" - }, - { - "name": "Uwe Tews", - "email": "uwe.tews@googlemail.com" - }, - { - "name": "Rodney Rehm", - "email": "rodney.rehm@medialize.de" - } - ], - "support": { - "irc": "irc://irc.freenode.org/smarty", - "issues": "http://code.google.com/p/smarty-php/issues/list", - "forum": "http://www.smarty.net/forums/" - }, - "autoload": { - "classmap": [ - "Bootstrap.php", - "PHPUnit_Smarty.php" - ] - }, - "extra": { - "branch-alias": { - "dev-master": "3.1.x-dev" - } - } -} diff --git a/tests/phpunit-coverage.bat b/tests/phpunit-coverage.bat deleted file mode 100644 index 80bc0551..00000000 --- a/tests/phpunit-coverage.bat +++ /dev/null @@ -1 +0,0 @@ -php ../../phpunit/phpunit/phpunit --coverage-html ./coverage ./ \ No newline at end of file diff --git a/tests/phpunit.bat b/tests/phpunit.bat deleted file mode 100644 index de97f5a4..00000000 --- a/tests/phpunit.bat +++ /dev/null @@ -1 +0,0 @@ -php ../../phpunit/phpunit/phpunit ./ \ No newline at end of file diff --git a/tests/phpunit_hhvm.sh b/tests/phpunit_hhvm.sh deleted file mode 100644 index 54c98c0a..00000000 --- a/tests/phpunit_hhvm.sh +++ /dev/null @@ -1,3 +0,0 @@ -#! /bin/bash - -hhvm ../../phpunit/phpunit/phpunit ./ diff --git a/tests/templates_c/.gitignore b/tests/templates_c/.gitignore new file mode 100644 index 00000000..1d34e205 --- /dev/null +++ b/tests/templates_c/.gitignore @@ -0,0 +1,2 @@ +# Ignore anything in here, but keep this directory +* \ No newline at end of file diff --git a/tests/templates_c/dummy.txt b/tests/templates_c/dummy.txt deleted file mode 100644 index e69de29b..00000000