Esempio n. 1
0
 /**
  * @covers Zepto\FileLoader::__construct()
  * @covers Zepto\FileLoader::base_path()
  */
 public function testConstructWithPathThatHasNoTrailingForwardSlash()
 {
     $loader = new FileLoader(ROOT_DIR . 'content');
     $this->assertEquals(ROOT_DIR . 'content/', $loader->base_path());
 }