Changeset 52010 for trunk/tests/phpunit/tests/feed/atom.php
- Timestamp:
- 11/04/2021 03:22:47 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/feed/atom.php
r51651 r52010 67 67 * This is a bit of a hack used to buffer feed content. 68 68 */ 69 function do_atom() {69 private function do_atom() { 70 70 ob_start(); 71 71 // Nasty hack! In the future it would better to leverage do_feed( 'atom' ). … … 86 86 * with the expected child elements and attributes. 87 87 */ 88 function test_feed_element() {88 public function test_feed_element() { 89 89 $this->go_to( '/?feed=atom' ); 90 90 $feed = $this->do_atom(); … … 130 130 * Validate <entry> child elements. 131 131 */ 132 function test_entry_elements() {132 public function test_entry_elements() { 133 133 $this->go_to( '/?feed=atom' ); 134 134 $feed = $this->do_atom(); … … 210 210 * @ticket 33591 211 211 */ 212 function test_atom_enclosure_with_extended_url_length_type_parsing() {212 public function test_atom_enclosure_with_extended_url_length_type_parsing() { 213 213 $enclosures = array( 214 214 array(
Note: See TracChangeset
for help on using the changeset viewer.