44
55static git_net_url source , target ;
66
7- void test_network_joinpath__initialize (void )
7+ void test_network_url_joinpath__initialize (void )
88{
99 memset (& source , 0 , sizeof (source ));
1010 memset (& target , 0 , sizeof (target ));
1111}
1212
13- void test_network_joinpath__cleanup (void )
13+ void test_network_url_joinpath__cleanup (void )
1414{
1515 git_net_url_dispose (& source );
1616 git_net_url_dispose (& target );
1717}
1818
19- void test_network_joinpath__target_paths_and_queries (void )
19+ void test_network_url_joinpath__target_paths_and_queries (void )
2020{
2121 cl_git_pass (git_net_url_parse (& source , "http://example.com/a/b" ));
2222
@@ -31,7 +31,7 @@ void test_network_joinpath__target_paths_and_queries(void)
3131 git_net_url_dispose (& target );
3232}
3333
34- void test_network_joinpath__source_query_removed (void )
34+ void test_network_url_joinpath__source_query_removed (void )
3535{
3636 cl_git_pass (git_net_url_parse (& source , "http://example.com/a/b?query&one&two" ));
3737
@@ -46,7 +46,7 @@ void test_network_joinpath__source_query_removed(void)
4646 git_net_url_dispose (& target );
4747}
4848
49- void test_network_joinpath__source_lacks_path (void )
49+ void test_network_url_joinpath__source_lacks_path (void )
5050{
5151 cl_git_pass (git_net_url_parse (& source , "http://example.com" ));
5252
@@ -91,7 +91,7 @@ void test_network_joinpath__source_lacks_path(void)
9191 git_net_url_dispose (& target );
9292}
9393
94- void test_network_joinpath__source_is_slash (void )
94+ void test_network_url_joinpath__source_is_slash (void )
9595{
9696 cl_git_pass (git_net_url_parse (& source , "http://example.com/" ));
9797
@@ -137,7 +137,7 @@ void test_network_joinpath__source_is_slash(void)
137137}
138138
139139
140- void test_network_joinpath__source_has_query (void )
140+ void test_network_url_joinpath__source_has_query (void )
141141{
142142 cl_git_pass (git_net_url_parse (& source , "http://example.com?query" ));
143143
@@ -183,7 +183,7 @@ void test_network_joinpath__source_has_query(void)
183183}
184184
185185
186- void test_network_joinpath__empty_query_ignored (void )
186+ void test_network_url_joinpath__empty_query_ignored (void )
187187{
188188 cl_git_pass (git_net_url_parse (& source , "http://example.com/foo" ));
189189
0 commit comments