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