mirror of
https://github.com/pestphp/pest.git
synced 2026-03-05 23:37:22 +01:00
16 lines
414 B
PHP
16 lines
414 B
PHP
<?php
|
|
|
|
it('is a test', function () {
|
|
expect(['key' => 'foo'])->toHaveKey('key')->key->toBeString();
|
|
});
|
|
|
|
it('is a higher order message test')->expect(true)->toBeTrue();
|
|
|
|
describe('a "describe" group of tests', function () {
|
|
it('is a test', function () {
|
|
expect(['key' => 'foo'])->toHaveKey('key')->key->toBeString();
|
|
});
|
|
|
|
it('is a higher order message test')->expect(true)->toBeTrue();
|
|
});
|