PluginProbe
EmbedPress – PDF Embedder, 3D PDF FlipBook, Google Reviews, YouTube Videos, Upload & Embed PDF documents / 1.6.2
EmbedPress – PDF Embedder, 3D PDF FlipBook, Google Reviews, YouTube Videos, Upload & Embed PDF documents v1.6.2
4.6.5 4.6.4 4.6.3 4.6.2 4.6.1 4.6.0 4.5.6 4.5.5 4.5.4 4.5.3 4.5.2 trunk 1.0.0 1.1.0 1.1.1 1.1.2 1.1.3 1.2.0 1.3.0 1.3.1 1.4.0 1.4.1 1.4.2 1.4.3 1.4.4 All 189 releases
embedpress / library / ostraining / embera / Tests / TestServicePastery.php
TestServicePastery.php
34 lines 776 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * TestServicePastery.php
4 *
5 * @package Tests
6 * @author Michael Pratt <pratt@hablarmierda.net>
7 * @link http://www.michael-pratt.com/
8 *
9 * For the full copyright and license information, please view the LICENSE
10 * file that was distributed with this source code.
11 */
12
13 require_once 'TestProviders.php';
14
15 class TestServicePastery extends TestProviders
16 {
17 protected $urls = array(
18 'valid' => array(
19 'https://www.pastery.net/api/',
20 'https://www.pastery.net/about/'
21 ),
22 'invalid' => array(
23 'https://www.pastery.net/',
24 'https://www.pastery.net/about/other-stuff',
25 ),
26 );
27
28 /**
29 * @large
30 */
31 public function testProvider() { $this->validateProvider('Pastery'); }
32 }
33 ?>
34