| 864 | } |
| 865 | |
| 866 | void |
| 867 | test_trailing_Z() |
| 868 | { |
| 869 | std::string format = "%FT%TZ"; |
| 870 | std::string datetime = "2017-2-15T13:13:13"; |
| 871 | std::istringstream input(datetime); |
| 872 | date::sys_seconds tp; |
| 873 | input >> date::parse(format, tp); |
| 874 | assert(input.fail()); |
| 875 | assert(input.eof()); |
| 876 | } |
| 877 | |
| 878 | void |
| 879 | test_leading_ws() |