Changeset 38761 for trunk/tests/phpunit/tests/http/functions.php
- Timestamp:
- 10/08/2016 10:42:12 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/http/functions.php
r38759 r38761 4 4 * @group http 5 5 * @group external-http 6 *7 * @requires extension openssl8 6 */ 9 7 class Tests_HTTP_Functions extends WP_UnitTestCase { 8 public function setUp() { 9 if ( ! extension_loaded( 'openssl' ) ) { 10 $this->markTestSkipped( 'Tests_HTTP_Functions requires openssl.' ); 11 } 12 13 parent::setUp(); 14 } 10 15 11 16 function test_head_request() {
Note: See TracChangeset
for help on using the changeset viewer.