Plugin Directory

Changeset 1732343


Ignore:
Timestamp:
09/19/2017 03:57:53 PM (9 years ago)
Author:
Aptivate
Message:

v1.0.2

Location:
climate-content-pool/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • climate-content-pool/trunk/climate-content-pool.php

    r1209738 r1732343  
    33Plugin Name: Climate Content Pool
    44Description: Pushes posts into the Climate Tagger Content Pool
    5 Version: 1.0.1
     5Version: 1.0.2
    66Author: Aptivate
    77*/
  • climate-content-pool/trunk/phpunit.xml

    r1209723 r1732343  
    11<phpunit
    22    bootstrap="tests/bootstrap.php"
    3     backupGlobals="true"
     3    backupGlobals="false"
    44    colors="true"
    55    convertErrorsToExceptions="true"
  • climate-content-pool/trunk/readme.txt

    r1209738 r1732343  
    33Tags: climate tagger, content pool, api
    44Requires at least: 3.7
    5 Tested up to: 4.2.2
    6 Stable tag: 1.0.1
     5Tested up to: 4.8.1
     6Stable tag: 1.0.2
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4141
    4242== Changelog ==
     43
     44= 1.0.2 =
     45* Test fixes only - no code changes
    4346
    4447= 1.0.1 =
  • climate-content-pool/trunk/tests/ContentPoolTestBase.php

    r1209723 r1732343  
    22abstract class ContentPoolTestBase extends WP_UnitTestCase
    33{
     4    public function setUp() {
     5        parent::setUp();
     6
     7        /* backupGlobals="true" no longer works with WP-CLI so we have to reset them
     8         * all here
     9         */
     10
     11        global $_CONTENT_POOL_MOCK_OPTIONS;
     12        $_CONTENT_POOL_MOCK_OPTIONS = array();
     13
     14        global $_CONTENT_POOL_MOCK_RESPONSE;
     15        $_CONTENT_POOL_MOCK_RESPONSE = array(
     16            'response' => array(
     17                'code' => '200',
     18            ),
     19        );
     20
     21        global $wp_meta_boxes;
     22        $wp_meta_boxes = array();
     23    }
     24
    425    protected function get_html_element_from_output( $output, $path )
    526    {
  • climate-content-pool/trunk/tests/test-post.php

    r1209723 r1732343  
    2020            'post_type' => 'post',
    2121        );
    22 
    2322    }
    2423
Note: See TracChangeset for help on using the changeset viewer.