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 / TestServiceSlideshare.php
TestServiceSlideshare.php
40 lines 1.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * TestServiceSlideShare.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 TestServiceSlideShare extends TestProviders
16 {
17 protected $urls = array(
18 'valid' => array(
19 'http://www.slideshare.net/shvmdhwn/personal-branding-do-it-yourself',
20 'http://slideshare.net/robinhbchan/project-bbx',
21 'http://www.slideshare.net/CNTMAN216/5linxbusinessopppresentation/',
22 'http://es.slideshare.net/appsfire/app-score-report-july-2012',
23 'http://www.slideshare.net/RobertGonzalez11/intelligent-onlinemarketingformedical/',
24 'http://www.slideshare.net/andreasklinger/startup-metrics-a-love-story',
25 'http://www.slideshare.net/FiratDemirel/hyperloop-alpha-elon-musk',
26 ),
27 'invalid' => array(
28 'http://www.slideshare.net/newlist/popular/language/de',
29 'http://www.slideshare.net/newlist/popular/week',
30 'http://www.slideshare.net/newlist/popular',
31 'http://www.slideshare.net/FiratDemirel',
32 'http://www.slideshare.net',
33 'http://www.slideshare.net/search/slideshow?searchfrom=header&q=start',
34 ),
35 );
36
37 public function testProvider() { $this->validateProvider('SlideShare'); }
38 }
39 ?>
40