TestServiceInfogram.php
| 1 | <?php |
| 2 | /** |
| 3 | * TestServiceInfogram.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 TestServiceInfogram extends TestProviders |
| 16 | { |
| 17 | protected $urls = array( |
| 18 | 'valid' => array( |
| 19 | 'https://infogr.am/4feb214cdf29-5349', |
| 20 | 'https://infogr.am/top_10_eu_tech_exits_in_q1_2015_ranked_by_acquisition_size__ipo_valuation_in_euros', |
| 21 | 'https://infogr.am/da0b4c76-26be-4169-9550-992fc499e3d9', |
| 22 | 'http://infogr.am/12saeimas-velesanu-rezume?query-string', |
| 23 | 'https://infogr.am/the-2014-creative-jobs-report-fact-sheet/', |
| 24 | ), |
| 25 | 'invalid' => array( |
| 26 | 'https://infogr.am/featured', |
| 27 | 'https://infogr.am', |
| 28 | 'https://infogr.am/demo/the-2014-creative-jobs-report-fact-sheet', |
| 29 | 'https://infogr.am/brands', |
| 30 | 'https://infogr.am/brands', |
| 31 | ), |
| 32 | ); |
| 33 | |
| 34 | public function testProvider() { $this->validateProvider('Infogram'); } |
| 35 | } |
| 36 | ?> |
| 37 |