Pantheon\Terminus\UnitTests\Models\LockTest::testRemove PHP Method

testRemove() public method

public testRemove ( )
    public function testRemove()
    {
        $this->workflows->expects($this->once())->method('create')->with('unlock_environment')->willReturn($this->workflow);
        $wf = $this->lock->remove();
        $this->assertEquals($this->workflow, $wf);
    }