diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-05-23 10:20:56 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-05-23 10:20:56 +0100 |
| commit | 0c3f91403eee01d4a1b2d2c520893de3a884a72d (patch) | |
| tree | ee6003878063040b8687d6d58cefa40af34ec345 /test/util_test.cc | |
| parent | 062dfa793fe484fe6eeb3828fa6462b50b6a6b27 (diff) | |
Fix missing words in properties windows (#874).
Diffstat (limited to 'test/util_test.cc')
| -rw-r--r-- | test/util_test.cc | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/test/util_test.cc b/test/util_test.cc index e296229e1..9dcd05339 100644 --- a/test/util_test.cc +++ b/test/util_test.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2012-2014 Carl Hetherington <cth@carlh.net> + Copyright (C) 2012-2016 Carl Hetherington <cth@carlh.net> This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -23,6 +23,7 @@ #include <boost/test/unit_test.hpp> #include "lib/util.h" +#include "lib/raw_convert.h" #include "lib/exceptions.h" using std::string; @@ -85,3 +86,9 @@ BOOST_AUTO_TEST_CASE (seconds_to_approximate_hms_test) BOOST_CHECK_EQUAL (seconds_to_approximate_hms (3600 + 40 * 60), "1h 40m"); BOOST_CHECK_EQUAL (seconds_to_approximate_hms (13 * 3600 + 40 * 60), "14h"); } + +BOOST_AUTO_TEST_CASE (raw_convert_test) +{ + BOOST_CHECK_EQUAL (raw_convert<string> ("foo"), "foo"); + BOOST_CHECK_EQUAL (raw_convert<string> ("foo bar"), "foo bar"); +} |
