Files
pest/tests/Features/Expect/not.php
2021-06-15 17:10:21 +01:00

11 lines
188 B
PHP

<?php
test('not property calls', function () {
expect(true)
->toBeTrue()
->not()->toBeFalse()
->not->toBeFalse
->and(false)
->toBeFalse();
});