TestServiceSlideshare.php
| 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 |