Changeset 53461
- Timestamp:
- 06/03/2022 03:05:28 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/functions.php
r53457 r53461 147 147 public function path_join_data_provider() { 148 148 return array( 149 // Absolute path .149 // Absolute paths. 150 150 'absolute path should return path' => array( 151 151 'base' => 'base', 152 152 'path' => '/path', 153 153 'expected' => '/path', 154 ), 155 'windows path with slashes' => array( 156 'base' => 'base', 157 'path' => '//path', 158 'expected' => '//path', 159 ), 160 'windows path with backslashes' => array( 161 'base' => 'base', 162 'path' => '\\\\path', 163 'expected' => '\\\\path', 154 164 ), 155 165 // Non-absolute paths.
Note: See TracChangeset
for help on using the changeset viewer.