| 1 |
<?php |
| 2 |
/** |
| 3 |
* TestServiceEgliseInfo.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 TestServiceEgliseInfo extends TestProviders |
| 16 |
{ |
| 17 |
protected $urls = array( |
| 18 |
'valid' => array( |
| 19 |
'http://egliseinfo.catholique.fr/horaires/paris', |
| 20 |
'http://egliseinfo.catholique.fr/a-proximite/paris', |
| 21 |
), |
| 22 |
'invalid' => array( |
| 23 |
'http://egliseinfo.catholique.fr/' |
| 24 |
), |
| 25 |
); |
| 26 |
|
| 27 |
public function testProvider() { $this->validateProvider('EgliseInfo'); } |
| 28 |
} |
| 29 |
?> |
| 30 |
|