public function testDoesntSpazz()
 {
     // Sadly we can't do much to actually test curl itself... but we'll run it and make sure it doesn't throw any
     // strange errors anyway.
     $c = new MinotarDl();
     try {
         $c->download(array('timeout' => 1), 'avatar/connor4312');
     } catch (MissingExtensionException $e) {
     }
     // Don't particularly care if Curl isn't installed during testing
 }
Exemple #2
0
 public function make($config, $path)
 {
     return MinotarDl::makeUrl($path);
 }