示例#1
0
 /**
  * @test
  * @covers Cocur\Watchman\Watch::find()
  */
 public function findFindsFilesThatMatchPattern()
 {
     $this->watchman->shouldReceive('find')->with($this->root, '*.scss')->once();
     $this->watch->find('*.scss');
 }