Cli\BasicOperationsCest::it_should_allow_creating_a_post_in_the_word_press_installation PHP Method

it_should_allow_creating_a_post_in_the_word_press_installation() public method

public it_should_allow_creating_a_post_in_the_word_press_installation ( ClimoduleTester $I )
$I ClimoduleTester
    public function it_should_allow_creating_a_post_in_the_word_press_installation(ClimoduleTester $I)
    {
        $I->cli('post create --post_title="Some Post" --post_type=post');
        $I->seePostInDatabase(['post_title' => 'Some Post', 'post_type' => 'post']);
    }