Changeset 41245 for trunk/tests/phpunit/tests/widgets/text-widget.php
- Timestamp:
- 08/13/2017 05:24:14 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/widgets/text-widget.php
r41134 r41245 65 65 66 66 $this->assertEquals( 10, has_action( 'admin_print_scripts-widgets.php', array( $widget, 'enqueue_admin_scripts' ) ) ); 67 $this->assertEquals( 10, has_action( 'admin_footer-widgets.php', array( $widget, 'render_control_template_scripts' ) ) ); 67 $this->assertEquals( 10, has_action( 'admin_footer-widgets.php', array( 'WP_Widget_Text', 'render_control_template_scripts' ) ) ); 68 $this->assertContains( 'wp.textWidgets.idBases.push( "text" );', wp_scripts()->registered['text-widgets']->extra['after'] ); 68 69 } 69 70 … … 746 747 */ 747 748 function test_render_control_template_scripts() { 748 $widget = new WP_Widget_Text(); 749 750 ob_start(); 751 $widget->render_control_template_scripts(); 749 ob_start(); 750 WP_Widget_Text::render_control_template_scripts(); 752 751 $output = ob_get_clean(); 753 752
Note: See TracChangeset
for help on using the changeset viewer.