summaryrefslogtreecommitdiff
path: root/indra/newview/tests
diff options
context:
space:
mode:
authorJames Cook <james@lindenlab.com>2010-02-23 16:33:43 -0800
committerJames Cook <james@lindenlab.com>2010-02-23 16:33:43 -0800
commit305ec89a70bf88fce8f5edda15047182bc56682b (patch)
treefa81888317c907ed848ce3920dad724235e9778b /indra/newview/tests
parent087736c1522f111bc6a4d4937db8541031ef4014 (diff)
Added ageFromDateISO() for YYYY-MM-DD dates
Diffstat (limited to 'indra/newview/tests')
-rw-r--r--indra/newview/tests/lldateutil_test.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/indra/newview/tests/lldateutil_test.cpp b/indra/newview/tests/lldateutil_test.cpp
index 7ba82fbd2c..e19983db8f 100644
--- a/indra/newview/tests/lldateutil_test.cpp
+++ b/indra/newview/tests/lldateutil_test.cpp
@@ -189,4 +189,14 @@ namespace tut
LLDateUtil::ageFromDate("12/13/2009", now),
"3 weeks old" );
}
+
+ template<> template<>
+ void dateutil_object_t::test<6>()
+ {
+ set_test_name("ISO dates");
+ LLDate now(std::string("2010-01-04T12:00:00Z"));
+ ensure_equals("days",
+ LLDateUtil::ageFromDateISO("2009-12-13", now),
+ "3 weeks old" );
+ }
}