mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-05-19 20:01:52 +00:00
unit test for path.stripHash
This commit is contained in:
parent
ca036b1b5e
commit
1156045e0c
1 changed files with 5 additions and 0 deletions
|
|
@ -75,6 +75,11 @@
|
|||
same( $.mobile.path.clean( localpath ), fakepath, "removes location protocol, host, port from same-domain path");
|
||||
same( $.mobile.path.clean( remotepath ), remotepath, "does nothing to an external domain path");
|
||||
});
|
||||
|
||||
test( "path.stripHash is working properly", function(){
|
||||
same( $.mobile.path.stripHash( "#bar" ), "bar", "returns a hash without the # prefix");
|
||||
|
||||
});
|
||||
|
||||
|
||||
test( "path.isExternal method is working properly", function(){
|
||||
|
|
|
|||
Loading…
Reference in a new issue