cerbero / pest-plugin-laravel-octane
Pest plugin to test Laravel applications powered by Octane.
Fund package maintenance!
cerbero90
Requires
- php: ^8.0
- cerbero/octane-testbench: ^1.0
- pestphp/pest: ^1.0
- pestphp/pest-plugin: ^1.0
Requires (Dev)
This package is auto-updated.
Last update: 2024-11-09 14:19:36 UTC
README
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.