Changeset 762 in tests
- Timestamp:
- 06/30/2012 05:36:57 PM (13 years ago)
- Location:
- trunk/wp-testlib
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-testlib/testcase.php
r761 r762 115 115 */ 116 116 function knownWPBug( $ticket_id ) { 117 if ( ! Trac kTickets::isTracTicketClosed( 'http://core.trac.wordpress.org', $ticket_id ) ) {117 if ( ! TracTickets::isTracTicketClosed( 'http://core.trac.wordpress.org', $ticket_id ) ) { 118 118 $this->markTestSkipped( sprintf( 'WordPress Ticket #%d is not fixed', $ticket_id ) ); 119 119 } … … 124 124 */ 125 125 function knownUTBug( $ticket_id ) { 126 if ( ! Trac kTickets::isTracTicketClosed( 'http://unit-tests.trac.wordpress.org', $ticket_id ) ) {126 if ( ! TracTickets::isTracTicketClosed( 'http://unit-tests.trac.wordpress.org', $ticket_id ) ) { 127 127 $this->markTestSkipped( sprintf( 'Unit Tests Ticket #%d is not fixed', $ticket_id ) ); 128 128 } … … 133 133 */ 134 134 function knownMUBug( $ticket_id ) { 135 if ( ! Trac kTickets::isTracTicketClosed ( 'http://trac.mu.wordpress.org', $ticket_id ) ) {135 if ( ! TracTickets::isTracTicketClosed ( 'http://trac.mu.wordpress.org', $ticket_id ) ) { 136 136 $this->markTestSkipped( sprintf( 'WordPress MU Ticket #%d is not fixed', $ticket_id ) ); 137 137 } … … 142 142 */ 143 143 function knownPluginBug( $ticket_id ) { 144 if ( ! Trac kTickets::isTracTicketClosed( 'http://dev.wp-plugins.org', $ticket_id ) ) {144 if ( ! TracTickets::isTracTicketClosed( 'http://dev.wp-plugins.org', $ticket_id ) ) { 145 145 $this->markTestSkipped( sprintf( 'WordPress Plugin Ticket #%d is not fixed', $ticket_id ) ); 146 146 } -
trunk/wp-testlib/trac.php
r761 r762 1 1 <?php 2 2 3 class Trac kTickets {3 class TracTickets { 4 4 /** 5 5 * Whenever a track ticket is checked to see if it's closed or not
Note: See TracChangeset
for help on using the changeset viewer.