diff options
| author | Carl Hetherington <cth@carlh.net> | 2022-12-30 18:12:33 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-12-30 18:12:52 +0100 |
| commit | 6919bfcb39c4df829edc82dcd30968a4aca3fbee (patch) | |
| tree | 1909431f491545056fee621f8a6d1bdf0f3fc596 /test | |
| parent | ef35f6a6c43d2be30b82ca943c56cf06f140d24d (diff) | |
Change the behaviour of LocalTime::operator== to make the same time in different time zones equal.v1.8.49
Previously different offsets would mean that the times compared as
not-equal.
Diffstat (limited to 'test')
| -rw-r--r-- | test/local_time_test.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/local_time_test.cc b/test/local_time_test.cc index 72390862..63083947 100644 --- a/test/local_time_test.cc +++ b/test/local_time_test.cc @@ -250,4 +250,7 @@ BOOST_AUTO_TEST_CASE(local_time_comparison_test) BOOST_CHECK(dcp::LocalTime("2014-10-10T10:00:01+01:00") > dcp::LocalTime("2014-10-10T10:00:00+01:00")); BOOST_CHECK(dcp::LocalTime("2014-01-01T10:00:00") != dcp::LocalTime("2014-01-01T10:05:00")); + BOOST_CHECK(dcp::LocalTime("2014-01-01T10:00:00") == dcp::LocalTime("2014-01-01T10:00:00")); + BOOST_CHECK(dcp::LocalTime("2014-01-01T10:00:00+02:00") == dcp::LocalTime("2014-01-01T08:00:00")); + BOOST_CHECK(dcp::LocalTime("2014-01-01T10:00:00+02:00") == dcp::LocalTime("2014-01-01T11:00:00+03:00")); } |
