Changeset 36547
- Timestamp:
- 02/17/2016 03:36:20 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/dependencies/styles.php
r32483 r36547 230 230 } 231 231 232 233 234 235 236 237 238 239 240 232 /** 233 * Testing 'wp_register_style' return boolean success/failure value. 234 * 235 * @ticket 31126 236 */ 237 function test_wp_register_style(){ 238 $this->assertTrue( wp_register_style( 'duplicate-handler', 'http://example.com' ) ); 239 $this->assertFalse( wp_register_style( 'duplicate-handler', 'http://example.com' ) ); 240 } 241 241 242 242 }
Note: See TracChangeset
for help on using the changeset viewer.