@ -18,9 +18,12 @@ func TestMakeAbsoluteAssetURL(t *testing.T) {
assert . Equal ( t , "https://localhost:1234/foo" , MakeAbsoluteAssetURL ( "https://localhost:1234" , "/foo" ) )
assert . Equal ( t , "https://localhost:1234/foo" , MakeAbsoluteAssetURL ( "https://localhost:1234/" , "/foo" ) )
assert . Equal ( t , "https://localhost:1234/foo" , MakeAbsoluteAssetURL ( "https://localhost:1234/" , "/foo/" ) )
assert . Equal ( t , "https://localhost:1234/foo/bar" , MakeAbsoluteAssetURL ( "https://localhost:1234/foo" , "/bar" ) )
assert . Equal ( t , "https://localhost:1234/foo/bar" , MakeAbsoluteAssetURL ( "https://localhost:1234/foo/" , "/bar" ) )
assert . Equal ( t , "https://localhost:1234/foo/bar" , MakeAbsoluteAssetURL ( "https://localhost:1234/foo/" , "/bar/" ) )
assert . Equal ( t , "https://localhost:1234/foo" , MakeAbsoluteAssetURL ( "https://localhost:1234/foo" , "/foo" ) )
assert . Equal ( t , "https://localhost:1234/foo" , MakeAbsoluteAssetURL ( "https://localhost:1234/foo/" , "/foo" ) )
assert . Equal ( t , "https://localhost:1234/foo" , MakeAbsoluteAssetURL ( "https://localhost:1234/foo/" , "/foo/" ) )
assert . Equal ( t , "https://localhost:1234/bar" , MakeAbsoluteAssetURL ( "https://localhost:1234/foo" , "/bar" ) )
assert . Equal ( t , "https://localhost:1234/bar" , MakeAbsoluteAssetURL ( "https://localhost:1234/foo/" , "/bar" ) )
assert . Equal ( t , "https://localhost:1234/bar" , MakeAbsoluteAssetURL ( "https://localhost:1234/foo/" , "/bar/" ) )
}
func TestMakeManifestData ( t * testing . T ) {