added simple tests for -protocol
This commit is contained in:
parent
62810c405a
commit
a17f790832
|
@ -3,7 +3,7 @@ use Libarchive::Filter :gzip;
|
|||
|
||||
my $starts-with-protocol = rx:i/ ^https? '://'/;
|
||||
|
||||
sub fix-protocol($url) is export {
|
||||
sub fix-protocol(Str $url) is export {
|
||||
return "http://" ~ $url unless $url ~~ $starts-with-protocol;
|
||||
|
||||
return $url;
|
||||
|
|
|
@ -1,8 +1,17 @@
|
|||
use v6.d;
|
||||
use Humming-Bird::Core;
|
||||
|
||||
use Test;
|
||||
# Local libs
|
||||
use lib 'lib';
|
||||
use Hyperlink-Redirect;
|
||||
use Hyperlink-Redirect::Helpers;
|
||||
|
||||
plan 2;
|
||||
|
||||
ok fix-protocol("seriousbusiness.international") eq "http://seriousbusiness.international", \
|
||||
"fix-protocol fixes bare domains correctly"\
|
||||
or diag "\nfix-protocol should return the same string with 'http://' prefixed if protocol isn't specified";
|
||||
|
||||
ok fix-protocol("https://www.seriousbusiness.international") eq "https://www.seriousbusiness.international",\
|
||||
"fix-protocol does not mangle correctly formatted domains"\
|
||||
or diag "\nThe URL should remain unchanged when the protocol is specified";
|
Loading…
Reference in a new issue