Skip to content

Commit e2a96d6

Browse files
committed
Remove is_comma_separated_string from test_utils
is_comma_separated_string is part of #474 and not yet merged
1 parent 91b1a9a commit e2a96d6

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

test/test_utils.cpp

-7
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,6 @@ TEST_CASE("util_escape", "[util]") {
1919
CHECK(escape("ab\\\\c\\\"d1'234") == "\"ab\\\\\\\\c\\\\\\\"d1'234\"");
2020
}
2121

22-
TEST_CASE("util_join_comma_separated", "[util]") {
23-
CHECK(to_comma_separated_string<std::vector<int>>({}) == "");
24-
CHECK(to_comma_separated_string<std::vector<int>>({1}) == "1");
25-
CHECK(to_comma_separated_string<std::vector<int>>({1, 2, 3, 4}) == "1,2,3,4");
26-
}
27-
28-
2922
TEST_CASE("util_parse_ruby_number", "[util]") {
3023
SECTION("Valid number") {
3124
CHECK(parse_ruby_number<int>("1") == 1);

0 commit comments

Comments
 (0)