← Volver a proyectos
Pest Plugin Laravel Octane
Pest plugin to test Laravel applications powered by Octane.
#⛽ Laravel Octane (Pest Plugin)
Pest plugin to test Laravel applications powered by Octane.
#Install
Via Composer
composer require --dev cerbero/pest-plugin-laravel-octane
#Usage
Once the plugin is installed you are ready to go! Combine the elegant syntax of Pest and Octane Testbench:
test('Octane application') ->assertOctaneCacheMissing('foo') ->assertOctaneTableMissing('example', 'row') ->assertOctaneTableCount('example', 0) ->expectsConcurrencyResults([1, 2, 3]) ->get('octane/route') ->assertOk() ->assertOctaneCacheHas('foo', 'bar') ->assertOctaneTableHas('example', 'row.votes', 123) ->assertOctaneTableCount('example', 1);
#Change log
Please see CHANGELOG for more information on what has changed recently.
#Testing
composer test
#Contributing
Please see CONTRIBUTING and CODE_OF_CONDUCT for details.
#Security
If you discover any security related issues, please email andrea.marco.sartori@gmail.com instead of using the issue tracker.
#Credits
#License
The MIT License (MIT). Please see License File for more information.