Write a test.

(cherry picked from commit f140950066)
This commit is contained in:
Nelson Elhage
2018-08-14 03:54:01 +00:00
committed by Patrick Steinhardt
parent 831a709d61
commit ef52371200
2 changed files with 16 additions and 0 deletions

View File

@@ -748,3 +748,18 @@ void test_config_read__bom(void)
git_config_free(cfg);
git_buf_free(&buf);
}
/* This would ideally issue a warning, if we had a way to do so. */
void test_config_read__nosection(void)
{
git_config *cfg;
git_buf buf = GIT_BUF_INIT;
cl_git_pass(git_config_open_ondisk(&cfg, cl_fixture("config/config-nosection")));
cl_git_pass(git_config_get_string_buf(&buf, cfg, "key"));
cl_assert_equal_s(buf.ptr, "value");
git_buf_free(&buf);
git_config_free(cfg);
}

View File

@@ -0,0 +1 @@
key = value