Autoload.php
10 years ago
TestEmbera.php
10 years ago
TestFakeResponse.php
10 years ago
TestFormatter.php
10 years ago
TestHttpRequest.php
10 years ago
TestOembed.php
10 years ago
TestProviders.php
10 years ago
TestServiceAmCharts.php
10 years ago
TestServiceAnimatron.php
10 years ago
TestServiceAnimoto.php
10 years ago
TestServiceAolOn.php
10 years ago
TestServiceAppNet.php
10 years ago
TestServiceAudioSnaps.php
10 years ago
TestServiceBambuser.php
10 years ago
TestServiceBlipTv.php
10 years ago
TestServiceCacoo.php
10 years ago
TestServiceChartblocks.php
10 years ago
TestServiceChirbit.php
10 years ago
TestServiceCircuitLab.php
10 years ago
TestServiceClyp.php
10 years ago
TestServiceCodepoints.php
10 years ago
TestServiceCollegeHumor.php
10 years ago
TestServiceCoub.php
10 years ago
TestServiceCrowdRanking.php
10 years ago
TestServiceDailyMile.php
10 years ago
TestServiceDailyMotion.php
10 years ago
TestServiceDeviantart.php
10 years ago
TestServiceDipity.php
10 years ago
TestServiceDotSub.php
10 years ago
TestServiceEdocr.php
10 years ago
TestServiceEgliseInfo.php
10 years ago
TestServiceFacebook.php
10 years ago
TestServiceFlickr.php
10 years ago
TestServiceFunnyOrDie.php
10 years ago
TestServiceGeographCI.php
10 years ago
TestServiceGeographDe.php
10 years ago
TestServiceGeographUk.php
10 years ago
TestServiceGettyImages.php
10 years ago
TestServiceGfycat.php
10 years ago
TestServiceGithubGist.php
10 years ago
TestServiceGmep.php
10 years ago
TestServiceHq23.php
10 years ago
TestServiceHuffduffer.php
10 years ago
TestServiceHulu.php
10 years ago
TestServiceIFTTT.php
10 years ago
TestServiceIFixIt.php
10 years ago
TestServiceInfogram.php
10 years ago
TestServiceInstagram.php
10 years ago
TestServiceIssuu.php
10 years ago
TestServiceIssuuFakeResponse.php
10 years ago
TestServiceKickstarter.php
10 years ago
TestServiceLearningApps.php
10 years ago
TestServiceMeetup.php
10 years ago
TestServiceMixCloud.php
10 years ago
TestServiceMobyPicture.php
10 years ago
TestServiceNFB.php
10 years ago
TestServiceOfficeMix.php
10 years ago
TestServiceOfficialFM.php
10 years ago
TestServiceOumy.php
10 years ago
TestServicePastery.php
10 years ago
TestServicePollDaddy.php
10 years ago
TestServicePollEverywhere.php
10 years ago
TestServicePortfolium.php
10 years ago
TestServiceRapidengage.php
10 years ago
TestServiceRdio.php
10 years ago
TestServiceReleaseWire.php
10 years ago
TestServiceRepubHub.php
10 years ago
TestServiceReverbnation.php
10 years ago
TestServiceRevision3.php
10 years ago
TestServiceRoomshare.php
10 years ago
TestServiceRutube.php
10 years ago
TestServiceSapo.php
10 years ago
TestServiceScreenr.php
10 years ago
TestServiceScribd.php
10 years ago
TestServiceShortNote.php
10 years ago
TestServiceShoudio.php
10 years ago
TestServiceShowTheWay.php
10 years ago
TestServiceSilk.php
10 years ago
TestServiceSketchfab.php
10 years ago
TestServiceSlideshare.php
10 years ago
TestServiceSoundCloud.php
10 years ago
TestServiceSpeakerDeck.php
10 years ago
TestServiceSpotify.php
10 years ago
TestServiceSway.php
10 years ago
TestServiceTed.php
10 years ago
TestServiceTheySaidSo.php
10 years ago
TestServiceTwitter.php
10 years ago
TestServiceUstream.php
10 years ago
TestServiceVerse.php
10 years ago
TestServiceViddler.php
10 years ago
TestServiceVideoFork.php
10 years ago
TestServiceVideoJug.php
10 years ago
TestServiceVimeo.php
10 years ago
TestServiceVine.php
10 years ago
TestServiceWordpressTV.php
10 years ago
TestServiceYFrog.php
10 years ago
TestServiceYandex.php
10 years ago
TestServiceYoutube.php
10 years ago
TestUrl.php
10 years ago
TestServiceEgliseInfo.php
30 lines
| 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 |