Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Straub <bs@github.com>2013-01-03 01:54:37 +0400
committerBen Straub <bs@github.com>2013-01-03 01:54:37 +0400
commit922dd9788cfec2ec4727e1b264a2ad6a7f4849ba (patch)
tree0e84ab504cf91f05bf99a1873077d74082cb706b /tests-clar/clone
parentcd5ca5b97fe2b9f87800adc7cfbb7088ac0c3ab7 (diff)
Move some clone tests to the nonetwork suite
Diffstat (limited to 'tests-clar/clone')
-rw-r--r--tests-clar/clone/network.c22
-rw-r--r--tests-clar/clone/nonetwork.c22
2 files changed, 22 insertions, 22 deletions
diff --git a/tests-clar/clone/network.c b/tests-clar/clone/network.c
index 885098779..f3b967204 100644
--- a/tests-clar/clone/network.c
+++ b/tests-clar/clone/network.c
@@ -61,14 +61,6 @@ void test_clone_network__network_bare(void)
git_remote_free(origin);
}
-void test_clone_network__cope_with_already_existing_directory(void)
-{
- cl_set_cleanup(&cleanup_repository, "./foo");
-
- p_mkdir("./foo", GIT_DIR_MODE);
- cl_git_pass(git_clone(&g_repo, LIVE_REPO_URL, "./foo", &g_options));
-}
-
void test_clone_network__empty_repository(void)
{
git_reference *head;
@@ -87,20 +79,6 @@ void test_clone_network__empty_repository(void)
git_reference_free(head);
}
-void test_clone_network__can_prevent_the_checkout_of_a_standard_repo(void)
-{
- git_buf path = GIT_BUF_INIT;
- cl_set_cleanup(&cleanup_repository, "./foo");
-
- g_options.checkout_opts.checkout_strategy = 0;
- cl_git_pass(git_clone(&g_repo, LIVE_REPO_URL, "./foo", &g_options));
-
- cl_git_pass(git_buf_joinpath(&path, git_repository_workdir(g_repo), "master.txt"));
- cl_assert_equal_i(false, git_path_isfile(git_buf_cstr(&path)));
-
- git_buf_free(&path);
-}
-
static void checkout_progress(const char *path, size_t cur, size_t tot, void *payload)
{
bool *was_called = (bool*)payload;
diff --git a/tests-clar/clone/nonetwork.c b/tests-clar/clone/nonetwork.c
index 51fedabb3..ffcf03d7c 100644
--- a/tests-clar/clone/nonetwork.c
+++ b/tests-clar/clone/nonetwork.c
@@ -160,3 +160,25 @@ void test_clone_nonetwork__custom_autotag(void)
cl_assert_equal_i(0, tags.count);
}
+void test_clone_nonetwork__cope_with_already_existing_directory(void)
+{
+ cl_set_cleanup(&cleanup_repository, "./foo");
+
+ p_mkdir("./foo", GIT_DIR_MODE);
+ cl_git_pass(git_clone(&g_repo, cl_git_fixture_url("testrepo.git"), "./foo", &g_options));
+}
+
+void test_clone_nonetwork__can_prevent_the_checkout_of_a_standard_repo(void)
+{
+ git_buf path = GIT_BUF_INIT;
+ cl_set_cleanup(&cleanup_repository, "./foo");
+
+ g_options.checkout_opts.checkout_strategy = 0;
+ cl_git_pass(git_clone(&g_repo, cl_git_fixture_url("testrepo.git"), "./foo", &g_options));
+
+ cl_git_pass(git_buf_joinpath(&path, git_repository_workdir(g_repo), "master.txt"));
+ cl_assert_equal_i(false, git_path_isfile(git_buf_cstr(&path)));
+
+ git_buf_free(&path);
+}
+