Changeset 1203 in tests for trunk/tests/theme/themeDir.php
- Timestamp:
- 02/08/2013 05:29:29 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/theme/themeDir.php
r1004 r1203 51 51 $this->assertEquals( 'WordPress Default', $theme['Title'] ); 52 52 $this->assertEquals( 'The default WordPress theme based on the famous <a href="http://binarybonsai.com/kubrick/">Kubrick</a>.', $theme['Description'] ); 53 $this->assertEquals( '<a href="http://binarybonsai.com/" title="Visit author homepage" >Michael Heilemann</a>', $theme['Author'] );53 $this->assertEquals( '<a href="http://binarybonsai.com/" title="Visit author homepage" target="_blank">Michael Heilemann</a>', $theme['Author'] ); 54 54 $this->assertEquals( '1.6', $theme['Version'] ); 55 55 $this->assertEquals( 'default', $theme['Template'] ); … … 104 104 $this->assertEquals( 'Stylesheet Only', $theme['Title'] ); 105 105 $this->assertEquals( 'A three-column widget-ready theme in dark blue.', $theme['Description'] ); 106 $this->assertEquals( '<a href="http://www.example.com/" title="Visit author homepage" >Henry Crun</a>', $theme['Author'] );106 $this->assertEquals( '<a href="http://www.example.com/" title="Visit author homepage" target="_blank">Henry Crun</a>', $theme['Author'] ); 107 107 $this->assertEquals( '1.0', $theme['Version'] ); 108 108 $this->assertEquals( 'sandbox', $theme['Template'] ); … … 175 175 $this->assertEquals( 'http://example.org/', $theme_data['URI'] ); 176 176 $this->assertEquals( 'An example theme', $theme_data['Description'] ); 177 $this->assertEquals( '<a href="http://example.com/" title="Visit author homepage" >Minnie Bannister</a>', $theme_data['Author'] );177 $this->assertEquals( '<a href="http://example.com/" title="Visit author homepage" target="_blank">Minnie Bannister</a>', $theme_data['Author'] ); 178 178 $this->assertEquals( 'http://example.com/', $theme_data['AuthorURI'] ); 179 179 $this->assertEquals( '1.3', $theme_data['Version'] ); … … 191 191 $this->assertEquals( 'http://example.org/', $theme_data['URI'] ); 192 192 $this->assertEquals( 'An example theme in a sub directory', $theme_data['Description'] ); 193 $this->assertEquals( '<a href="http://wordpress.org/" title="Visit author homepage" >Mr. WordPress</a>', $theme_data['Author'] );193 $this->assertEquals( '<a href="http://wordpress.org/" title="Visit author homepage" target="_blank">Mr. WordPress</a>', $theme_data['Author'] ); 194 194 $this->assertEquals( 'http://wordpress.org/', $theme_data['AuthorURI'] ); 195 195 $this->assertEquals( '0.1', $theme_data['Version'] );
Note: See TracChangeset
for help on using the changeset viewer.