Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Rotua Panjaitan
yii2
Commits
892d95a3
Commit
892d95a3
authored
Aug 11, 2014
by
Alexander Makarov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added runtime cleanup for Smarty and Twig tests
parent
3139c979
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
0 deletions
+16
-0
ViewRendererTest.php
tests/unit/extensions/smarty/ViewRendererTest.php
+9
-0
ViewRendererTest.php
tests/unit/extensions/twig/ViewRendererTest.php
+7
-0
No files found.
tests/unit/extensions/smarty/ViewRendererTest.php
View file @
892d95a3
...
...
@@ -7,6 +7,7 @@
namespace
yiiunit\extensions\smarty
;
use
yii\helpers\FileHelper
;
use
yii\web\AssetManager
;
use
yii\web\View
;
use
Yii
;
...
...
@@ -20,9 +21,17 @@ class ViewRendererTest extends TestCase
{
protected
function
setUp
()
{
parent
::
setUp
();
$this
->
mockApplication
();
}
protected
function
tearDown
()
{
parent
::
tearDown
();
FileHelper
::
removeDirectory
(
Yii
::
getAlias
(
'@runtime/assets'
));
FileHelper
::
removeDirectory
(
Yii
::
getAlias
(
'@runtime/Smarty'
));
}
/**
* https://github.com/yiisoft/yii2/issues/2265
*/
...
...
tests/unit/extensions/twig/ViewRendererTest.php
View file @
892d95a3
<?php
namespace
yiiunit\extensions\twig
;
use
yii\helpers\FileHelper
;
use
yii\web\AssetManager
;
use
yii\web\View
;
use
Yii
;
...
...
@@ -24,6 +25,12 @@ class ViewRendererTest extends DatabaseTestCase
$this
->
mockApplication
();
}
protected
function
tearDown
()
{
parent
::
tearDown
();
FileHelper
::
removeDirectory
(
Yii
::
getAlias
(
'@runtime/assets'
));
}
/**
* https://github.com/yiisoft/yii2/issues/1755
*/
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment