Test another bad URL

This commit is contained in:
Ben Straub 2013-10-31 13:29:16 -07:00
parent 151b321898
commit 887df99f17

View File

@ -58,7 +58,9 @@ void test_clone_nonetwork__bad_urls(void)
cl_git_fail(git_clone(&g_repo, "git://example.com:asdf", "./foo", &g_options));
cl_git_fail(git_clone(&g_repo, "https://example.com:asdf/foo", "./foo", &g_options));
cl_git_fail(git_clone(&g_repo, "git://github.com/git://github.com/foo/bar.git.git",
"./bar", &g_options));
"./foo", &g_options));
cl_git_fail(git_clone(&g_repo, "arrbee:my/bad:password@github.com:1111/strange:words.git",
"./foo", &g_options));
}
void test_clone_nonetwork__do_not_clean_existing_directory(void)