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

testCompleteMigration() public method

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