+ date = friendly_date_ago(Time.now.utc - 1.hour)
+ assert_match %r{^<time title=".*">about 1 hour ago</time>$}, date
+
+ date = friendly_date_ago(Time.now.utc - 2.days)
+ assert_match %r{^<time title=".*">2 days ago</time>$}, date
+
+ date = friendly_date_ago(Time.now.utc - 3.weeks)
+ assert_match %r{^<time title=".*">21 days ago</time>$}, date
+
+ date = friendly_date_ago(Time.now.utc - 4.months)
+ assert_match %r{^<time title=".*">4 months ago</time>$}, date
+ end