Make WordPress Core


Ignore:
Timestamp:
03/23/2016 07:00:38 PM (9 years ago)
Author:
boonebgorges
Message:

Tests: Ensure that the default wp_die() handler can handle a WP_Error object.

Props dd32, utkarshpatel.
Fixes #36166.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/tests/includes/helpers.php

    r36785 r37071  
    205205        return true;
    206206    }
     207
     208    /**
     209     * @ticket 36166
     210     * @expectedException WPDieException
     211     */
     212    public function test_die_handler_should_handle_wp_error() {
     213        wp_die( new WP_Error( 'test', 'test' ) );
     214    }
    207215}
Note: See TracChangeset for help on using the changeset viewer.