Changeset 56548 for trunk/tests/phpunit/tests/filesystem/findFolder.php
- Timestamp:
- 09/08/2023 10:01:14 AM (19 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/filesystem/findFolder.php
r56547 r56548 25 25 $path = $fs->find_folder( '/this/directory/doesnt/exist/' ); 26 26 $this->assertFalse( $path ); 27 28 27 } 29 28 … … 49 48 $path = $fs->find_folder( '/var/www/wp.example.com/wordpress/wp-content/' ); 50 49 $this->assertSame( '/www/wp.example.com/wordpress/wp-content/', $path ); 51 52 50 } 53 51 … … 77 75 $path = $fs->abspath( '/var/www/example.com/' ); 78 76 $this->assertSame( '/', $path ); 79 80 77 } 81 78
Note: See TracChangeset
for help on using the changeset viewer.