Make WordPress Core

Changeset 762 in tests


Ignore:
Timestamp:
06/30/2012 05:36:57 PM (13 years ago)
Author:
maxcutler
Message:

s/TrackTickets/TracTickets

See #43.

Location:
trunk/wp-testlib
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-testlib/testcase.php

    r761 r762  
    115115     */
    116116    function knownWPBug( $ticket_id ) {
    117         if ( ! TrackTickets::isTracTicketClosed( 'http://core.trac.wordpress.org', $ticket_id ) ) {
     117        if ( ! TracTickets::isTracTicketClosed( 'http://core.trac.wordpress.org', $ticket_id ) ) {
    118118            $this->markTestSkipped( sprintf( 'WordPress Ticket #%d is not fixed', $ticket_id ) );
    119119        }
     
    124124     */
    125125    function knownUTBug( $ticket_id ) {
    126         if ( ! TrackTickets::isTracTicketClosed( 'http://unit-tests.trac.wordpress.org', $ticket_id ) ) {
     126        if ( ! TracTickets::isTracTicketClosed( 'http://unit-tests.trac.wordpress.org', $ticket_id ) ) {
    127127            $this->markTestSkipped( sprintf( 'Unit Tests Ticket #%d is not fixed', $ticket_id ) );
    128128        }
     
    133133     */
    134134    function knownMUBug( $ticket_id ) {
    135         if ( ! TrackTickets::isTracTicketClosed ( 'http://trac.mu.wordpress.org', $ticket_id ) ) {
     135        if ( ! TracTickets::isTracTicketClosed ( 'http://trac.mu.wordpress.org', $ticket_id ) ) {
    136136            $this->markTestSkipped( sprintf( 'WordPress MU Ticket #%d is not fixed', $ticket_id ) );
    137137        }
     
    142142     */
    143143    function knownPluginBug( $ticket_id ) {
    144         if ( ! TrackTickets::isTracTicketClosed( 'http://dev.wp-plugins.org', $ticket_id ) ) {
     144        if ( ! TracTickets::isTracTicketClosed( 'http://dev.wp-plugins.org', $ticket_id ) ) {
    145145            $this->markTestSkipped( sprintf( 'WordPress Plugin Ticket #%d is not fixed', $ticket_id ) );
    146146        }
  • trunk/wp-testlib/trac.php

    r761 r762  
    11<?php
    22
    3 class TrackTickets {
     3class TracTickets {
    44    /**
    55     * Whenever a track ticket is checked to see if it's closed or not
Note: See TracChangeset for help on using the changeset viewer.