Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'qa/qa/support/dates.rb')
-rw-r--r--qa/qa/support/dates.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/qa/qa/support/dates.rb b/qa/qa/support/dates.rb
index 47fc721afc1..3d1f146730b 100644
--- a/qa/qa/support/dates.rb
+++ b/qa/qa/support/dates.rb
@@ -11,6 +11,11 @@ module QA
current_date.next_month.strftime("%Y/%m/%d")
end
+ def format_date(date)
+ new_date = DateTime.strptime(date, "%Y/%m/%d")
+ new_date.strftime("%b %-d, %Y")
+ end
+
private
def current_date