cleanup for self-review

This commit is contained in:
jordanbrauer
2021-02-13 13:31:25 -06:00
parent 9a0240bc7b
commit 19a1569fa8
9 changed files with 21 additions and 23 deletions

View File

@ -1,6 +1,10 @@
<?php
test(sprintf('this runs file names like "%s"', basename(__FILE__)))
->assertTrue(true);
/*
* NOTE: To preserve cross-platform testing compatibility we cannot use ! * and
* other Windows reserved characters in this test's filename.
*
* See https://docs.microsoft.com/en-us/windows/win32/fileio/naming-a-file#naming-conventions
*/
//!@#$%^&*()-_=+
it(sprintf('runs file names like `%s`', basename(__FILE__)))->assertTrue(true);