Pantheon\Terminus\UnitTests\Models\SiteTest::testDeployProduct PHP Метод

testDeployProduct() публичный Метод

Tests Site::deployProduct($upstream_id)
public testDeployProduct ( )
    public function testDeployProduct()
    {
        $upstream_id = 'upstream_id';
        $this->workflows->expects($this->once())->method('create')->with($this->equalTo('deploy_product'), $this->equalTo(['params' => ['product_id' => $upstream_id]]))->willReturn($this->workflow);
        $workflow = $this->model->deployProduct($upstream_id);
        $this->assertEquals($workflow, $this->workflow);
    }