Cli\BasicOperationsCest::it_should_allow_trashing_a_post PHP Method

it_should_allow_trashing_a_post() public method

public it_should_allow_trashing_a_post ( ClimoduleTester $I )
$I ClimoduleTester
    public function it_should_allow_trashing_a_post(ClimoduleTester $I)
    {
        $id = $I->havePostInDatabase(['post_title' => 'some post', 'post_type' => 'post']);
        $I->cli('post delete ' . $id);
        $I->seePostInDatabase(['ID' => $id, 'post_status' => 'trash']);
    }