Pantheon\Terminus\UnitTests\Models\SiteTest::testConverge PHP Method

testConverge() public method

Tests Site::converge()
public testConverge ( )
    public function testConverge()
    {
        $this->workflows->expects($this->once())->method('create')->with($this->equalTo('converge_site'))->willReturn($this->workflow);
        $workflow = $this->model->converge();
        $this->assertEquals($workflow, $this->workflow);
    }