Skip to:
Content

bbPress.org


Ignore:
Timestamp:
01/30/2015 06:36:57 PM (10 years ago)
Author:
johnjamesjacoby
Message:

Port PHPUnit testing setup from BuddyPress. More to clean up here later.

Also adds 1 test to check for bbpress() function availability.

See #2542.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/testcases/core/functions.php

    r5271 r5610  
    99
    1010    /**
    11      * Ensure that the plugin has been installed and activated.
     11     * Ensure that bbPress function exists
     12     */
     13    function test_bbpress_exists() {
     14        $this->assertTrue( function_exists( 'bbpress' ) );
     15    }
     16
     17    /**
     18     * Ensure that bbPress has been installed and activated.
    1219     */
    1320    function test_plugin_activated() {
Note: See TracChangeset for help on using the changeset viewer.