mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-09-04 01:27:20 +02:00
Unit Tests - fixing broken tests
- The split tests are all broken after a recent change. They need to be extended to accommodate the new split_minimal functions.
This commit is contained in:
parent
8c5508de4b
commit
b246fae889
3 changed files with 65 additions and 8 deletions
|
@ -38,8 +38,10 @@ std::string trimRight (const std::string& in, const std::string& t = " ");
|
|||
std::string trim (const std::string& in, const std::string& t = " ");
|
||||
std::string unquoteText (const std::string&);
|
||||
void extractLine (std::string&, std::string&, int);
|
||||
void split (std::vector<std::string>&, const std::string&, const char, bool nontrivial = true);
|
||||
void split (std::vector<std::string>&, const std::string&, const std::string&, bool nontrivial = true);
|
||||
void split (std::vector<std::string>&, const std::string&, const char);
|
||||
void split (std::vector<std::string>&, const std::string&, const std::string&);
|
||||
void split_minimal (std::vector<std::string>&, const std::string&, const char);
|
||||
void split_minimal (std::vector<std::string>&, const std::string&, const std::string&);
|
||||
void join (std::string&, const std::string&, const std::vector<std::string>&);
|
||||
std::string commify (const std::string&);
|
||||
std::string lowerCase (const std::string&);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue