| | 111 | /** |
| | 112 | * @ticket 26642 |
| | 113 | */ |
| | 114 | function test_new_img_caption_shortcode_new_format_no_inline() { |
| | 115 | add_theme_support( 'no-inline-style-captions' ); |
| | 116 | $result = img_caption_shortcode( |
| | 117 | array( 'width' => 20 ), |
| | 118 | $this->img_content . $this->html_content |
| | 119 | ); |
| | 120 | $expected = '<div class="wp-caption alignnone">' . $this->img_content . '<p class="wp-caption-text">' . $this->html_content . '</p></div>'; |
| | 121 | $this->assertEquals( $expected, $result ); |
| | 122 | remove_theme_support( 'no-inline-style-captions' ); |
| | 123 | } |
| | 124 | |