Nwidart\Modules\tests\Commands\GenerateJobCommandTest::it_generates_the_job_class PHP Method

it_generates_the_job_class() public method

    public function it_generates_the_job_class()
    {
        $this->artisan('module:make-job', ['name' => 'SomeJob', 'module' => 'Blog']);
        $this->assertTrue(is_file($this->modulePath . '/Jobs/SomeJob.php'));
    }