2015-09-28 04:36:23 +02:00
|
|
|
<phpunit
|
|
|
|
bootstrap="includes/bootstrap.php"
|
|
|
|
backupGlobals="false"
|
|
|
|
colors="true"
|
|
|
|
>
|
|
|
|
<php>
|
|
|
|
<const name="WP_TESTS_MULTISITE" value="1" />
|
|
|
|
</php>
|
|
|
|
<testsuites>
|
|
|
|
<!-- Default test suite to run all tests -->
|
|
|
|
<testsuite>
|
|
|
|
<directory suffix=".php">tests</directory>
|
|
|
|
<exclude>tests/phpunit/tests/actions/closures.php</exclude>
|
|
|
|
<exclude>tests/phpunit/tests/image/editor.php</exclude>
|
|
|
|
<exclude>tests/phpunit/tests/image/editor_gd.php</exclude>
|
|
|
|
<exclude>tests/phpunit/tests/image/editor_imagick.php</exclude>
|
|
|
|
<file phpVersion="5.3.0">tests/phpunit/tests/actions/closures.php</file>
|
|
|
|
<file phpVersion="5.3.0">tests/phpunit/tests/image/editor.php</file>
|
|
|
|
<file phpVersion="5.3.0">tests/phpunit/tests/image/editor_gd.php</file>
|
|
|
|
<file phpVersion="5.3.0">tests/phpunit/tests/image/editor_imagick.php</file>
|
|
|
|
</testsuite>
|
|
|
|
</testsuites>
|
|
|
|
<groups>
|
|
|
|
<exclude>
|
|
|
|
<group>ajax</group>
|
|
|
|
<group>ms-files</group>
|
|
|
|
<group>external-http</group>
|
Embeds: Add oEmbed provider support.
For the past 6 years, WordPress has operated as an oEmbed consumer, allowing users to easily embed content from other sites. By adding oEmbed provider support, this allows any oEmbed consumer to embed posts from WordPress sites.
In addition to creating an oEmbed provider, WordPress' oEmbed consumer code has been enhanced to work with any site that provides oEmbed data (as long as it matches some strict security rules), and provides a preview from within the post editor.
For security, embeds appear within a sandboxed iframe - the iframe content is a template that can be styled or replaced entirely by the theme on the provider site.
Props swissspidy, pento, melchoyce, netweb, pfefferle, johnbillion, extendwings, davidbinda, danielbachhuber, SergeyBiryukov, afercia
Fixes #32522.
git-svn-id: https://develop.svn.wordpress.org/trunk@34903 602fd350-edb4-49c9-b593-d223f7449a82
2015-10-07 12:35:18 +02:00
|
|
|
<group>oembed-headers</group>
|
2015-09-28 04:36:23 +02:00
|
|
|
</exclude>
|
|
|
|
</groups>
|
|
|
|
<php>
|
|
|
|
<const name="WP_RUN_CORE_TESTS" value="1" />
|
|
|
|
</php>
|
|
|
|
</phpunit>
|