diff --git tests/phpunit/tests/shortcode.php tests/phpunit/tests/shortcode.php
index 9f6a71d..3dce032 100644
|
|
|
EOF; |
| 312 | 312 | } |
| 313 | 313 | |
| 314 | 314 | /** |
| | 315 | * @ticket 35022 |
| | 316 | */ |
| | 317 | public function test_non_breaking_space_following_shortcode_tag() { |
| | 318 | do_shortcode( "[test-shortcode-tag\xA0 foo=\"bar\"]" ); |
| | 319 | $this->assertSame( 'test-shortcode-tag', $this->tagname ); |
| | 320 | $this->assertSame( array( 'foo' => 'bar' ), $this->atts ); |
| | 321 | } |
| | 322 | |
| | 323 | /** |
| 315 | 324 | * @ticket 6562 |
| 316 | 325 | */ |
| 317 | 326 | function test_utf8_whitespace_2() { |