Пример #1
0
Файл: Test.php Проект: jasny/Q
 /**
  * Tests Fs::char()
  */
 public function testChar()
 {
     $file = Fs::char('/dev/null');
     $this->assertType('Q\\Fs_Char', $file);
     $this->assertEquals('/dev/null', (string) $file);
 }