Changeset 45796 for trunk/tests/phpunit/tests/formatting/WPTrimWords.php
- Timestamp:
- 08/14/2019 05:17:51 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/formatting/WPTrimWords.php
r45505 r45796 74 74 $this->assertEquals( $expected, $actual ); 75 75 } 76 77 /** 78 * @ticket 47867 79 */ 80 function test_works_with_non_numeric_num_words() { 81 $this->assertEquals( '', wp_trim_words( $this->long_text, '', '' ) ); 82 $this->assertEquals( '', wp_trim_words( $this->long_text, 'abc', '' ) ); 83 $this->assertEquals( '', wp_trim_words( $this->long_text, null, '' ) ); 84 $this->assertEquals( 'Lorem ipsum dolor', wp_trim_words( $this->long_text, '3', '' ) ); 85 } 76 86 }
Note: See TracChangeset
for help on using the changeset viewer.