Changeset 46370
- Timestamp:
- 10/01/2019 04:12:15 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/shortcode.php
r46369 r46370 741 741 742 742 function data_whole_posts() { 743 require_once ( DIR_TESTDATA . '/formatting/whole-posts.php' );743 require_once DIR_TESTDATA . '/formatting/whole-posts.php'; 744 744 return data_whole_posts(); 745 745 } … … 993 993 * Data provider for `test_shortcode_parse_atts()`. 994 994 * 995 * @ticket 47863 996 * 995 997 * @return array { 996 998 * @type array { … … 1058 1060 '[unittest link=https://unit.test/ /]', 1059 1061 array( 1060 'link' 1062 'link' => 'https://unit.test/', 1061 1063 ), 1062 1064 ), … … 1064 1066 '[unittest link=https://unit.test/ ]', 1065 1067 array( 1066 'link' 1068 'link' => 'https://unit.test/', 1067 1069 ), 1068 1070 ), … … 1070 1072 '[unittest link=https://unit.test/]', 1071 1073 array( 1072 'link' 1074 'link' => 'https://unit.test', 1073 1075 ), 1074 1076 ),
Note: See TracChangeset
for help on using the changeset viewer.