Browse Source

Fixed vfsStream to version 0.11.1 (work with both 0.10.1 and 0.11.1)

master
Alexander Letov 13 years ago
committed by Anton Terekhov
parent
commit
34645282ce
  1. 1
      tests/LoadTest.php
  2. 1
      tests/logger/FileLoggerTest.php
  3. 1
      tests/view/PHPViewTest.php

1
tests/LoadTest.php

@ -42,6 +42,7 @@ class LoadTest extends PHPUnit_Framework_TestCase
self::$autoload_array = array('Db' => '/lib/core/model/Db.php', 'DbDriver' => '/lib/core/model/DbDriver.php');
vfsStreamWrapper::register();
vfsStream::setup();
$this->root = vfsStream::create(
array(
'lib' => array(

1
tests/logger/FileLoggerTest.php

@ -30,6 +30,7 @@ class FileLoggerTest extends PHPUnit_Framework_TestCase
public function setUp()
{
vfsStreamWrapper::register();
vfsStream::setup();
$root = vfsStream::create(array());
vfsStreamWrapper::setRoot($root);
$this->conf = array('logger' => 'FileLogger', 'filepath' => vfsStream::url('root/log.txt'));

1
tests/view/PHPViewTest.php

@ -28,6 +28,7 @@ class PHPViewTest extends PHPUnit_Framework_TestCase
public function setUp()
{
vfsStreamWrapper::register();
vfsStream::setup();
$root = vfsStream::create(array());
vfsStreamWrapper::setRoot($root);
$views_dir = vfsStream::newDirectory('views');

Loading…
Cancel
Save