<?php

/**
 * Test URL Examples
 *
 * @author Aaron Quint
 **/

require "TestURL.class.php";

// Check a url to make sure its alive

$suite = new TestURL("http://www.quirkey.com",200);
$suite->test(true);

// Check a couple urls to make sure they appear as MP3s

$mp3s = array(	'http://www.audiokio.com/download/Scenario45_-_Crack_Kills.mp3',
				'http://www.audiokio.com/download/The_Educataz_-_Enjoy_the_Ride.mp3',
				'http://www.audiokio.com/download/Zeps_and_AQ_-_Troopin.mp3');

$correct_headers = array('Content-Type' => 'audio/mpeg');

$suite = new TestURL($mp3s,200,$correct_headers);
$suite->test(true);

// check a url to make sure it redirects

$suite = new TestURL('http://www.venturevoice.com/vv.xml',302);
$suite->test(true);

?>