mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-04-21 22:54:44 +00:00
unit test for path.isExternal
This commit is contained in:
parent
1156045e0c
commit
c3ed538542
1 changed files with 5 additions and 0 deletions
|
|
@ -80,6 +80,11 @@
|
|||
same( $.mobile.path.stripHash( "#bar" ), "bar", "returns a hash without the # prefix");
|
||||
|
||||
});
|
||||
|
||||
test( "path.isExternal is working properly", function(){
|
||||
same( $.mobile.path.isExternal( location.href ), false, "same domain is not external" );
|
||||
same( $.mobile.path.isExternal( "http://example.com" ), true, "example.com is external" );
|
||||
});
|
||||
|
||||
|
||||
test( "path.isExternal method is working properly", function(){
|
||||
|
|
|
|||
Loading…
Reference in a new issue