Exemplo n.º 1
0
 /**
  * @test
  * @covers Cocur\Watchman\Watch::addTrigger()
  */
 public function addTriggerAddsTriggerToWatch()
 {
     $this->watchman->shouldReceive('addTrigger')->with($this->root, 'foobar', '*.js', 'ls -al')->once()->andReturn('foobar');
     $this->assertEquals('foobar', $this->watch->addTrigger('foobar', '*.js', 'ls -al'));
 }