Changeset 1306 in tests
- Timestamp:
- 07/09/2013 04:55:31 AM (11 years ago)
- Location:
- trunk/tests
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/admin/includesPlugin.php
r1203 r1306 10 10 $default_headers = array( 11 11 'Name' => 'Hello Dolly', 12 'Title' => '<a href="http://wordpress.org/#" title="Visit plugin homepage" target="_blank">Hello Dolly</a>',12 'Title' => '<a href="http://wordpress.org/#" title="Visit plugin homepage">Hello Dolly</a>', 13 13 'PluginURI' => 'http://wordpress.org/#', 14 'Description' => 'This is not just a plugin, it symbolizes the hope and enthusiasm of an entire generation summed up in two words sung most famously by Louis Armstrong: Hello, Dolly. When activated you will randomly see a lyric from Hello, Dolly in the upper right of your admin screen on every page. <cite>By <a href="http://ma.tt/" title="Visit author homepage" target="_blank">Matt Mullenweg</a>.</cite>',15 'Author' => '<a href="http://ma.tt/" title="Visit author homepage" target="_blank">Matt Mullenweg</a>',14 'Description' => 'This is not just a plugin, it symbolizes the hope and enthusiasm of an entire generation summed up in two words sung most famously by Louis Armstrong: Hello, Dolly. When activated you will randomly see a lyric from Hello, Dolly in the upper right of your admin screen on every page. <cite>By <a href="http://ma.tt/" title="Visit author homepage">Matt Mullenweg</a>.</cite>', 15 'Author' => '<a href="http://ma.tt/" title="Visit author homepage">Matt Mullenweg</a>', 16 16 'AuthorURI' => 'http://ma.tt/', 17 17 'Version' => '1.5.1', -
trunk/tests/theme/themeDir.php
r1203 r1306 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" target="_blank">Michael Heilemann</a>', $theme['Author'] );53 $this->assertEquals( '<a href="http://binarybonsai.com/" title="Visit author homepage">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" target="_blank">Henry Crun</a>', $theme['Author'] );106 $this->assertEquals( '<a href="http://www.example.com/" title="Visit author homepage">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" target="_blank">Minnie Bannister</a>', $theme_data['Author'] );177 $this->assertEquals( '<a href="http://example.com/" title="Visit author homepage">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" target="_blank">Mr. WordPress</a>', $theme_data['Author'] );193 $this->assertEquals( '<a href="http://wordpress.org/" title="Visit author homepage">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.