| 24 | #include <test.hpp> |
| 25 | |
| 26 | static bool glob_match(const std::string& input, const std::string& pattern) |
| 27 | { |
| 28 | return test::glob_match(input.begin(), input.end(), pattern.begin(), pattern.end()); |
| 29 | } |
| 30 | |
| 31 | TEST_CASE(globbing) |
| 32 | { |
no test coverage detected