13 lines
241 B
PHP
13 lines
241 B
PHP
<?php
|
|
|
|
use App\Jobs\PollFuelPricesJob;
|
|
use Illuminate\Support\Facades\Queue;
|
|
|
|
it('dispatches to the default queue', function () {
|
|
Queue::fake();
|
|
|
|
PollFuelPricesJob::dispatch();
|
|
|
|
Queue::assertPushed(PollFuelPricesJob::class);
|
|
});
|