seregazhuk\tests\Bot\Api\UserTest::it_should_edit_user_profile PHP Method

it_should_edit_user_profile() public method

    public function it_should_edit_user_profile()
    {
        $this->apiShouldReturnSuccess();
        $attributes = ['name' => 'name'];
        $this->assertTrue($this->provider->profile($attributes));
        $this->apiShouldReturnError()->assertFalse($this->provider->profile($attributes));
    }