Skip to content
Snippets Groups Projects
Commit 68aa898f authored by James Cook's avatar James Cook
Browse files

Better unit test for date math, works on PC but system problem on Mac/Linux

parent b5f02c57
No related branches found
No related tags found
No related merge requests found
...@@ -179,4 +179,14 @@ namespace tut ...@@ -179,4 +179,14 @@ namespace tut
LLDateUtil::ageFromDate("12/31/2009", mNow), LLDateUtil::ageFromDate("12/31/2009", mNow),
"Joined today" ); "Joined today" );
} }
template<> template<>
void dateutil_object_t::test<5>()
{
set_test_name("2010 rollover");
LLDate now(std::string("2010-01-04T12:00:00Z"));
ensure_equals("days",
LLDateUtil::ageFromDate("12/13/2009", now),
"3 weeks old" );
}
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment