Commit 45e200dc authored by Walmyr Lima's avatar Walmyr Lima

Update existing test to use dates module

parent 15b46241
...@@ -4,17 +4,15 @@ module QA ...@@ -4,17 +4,15 @@ module QA
# https://gitlab.com/gitlab-org/gitlab/issues/13360 # https://gitlab.com/gitlab-org/gitlab/issues/13360
context 'Plan', :skip do context 'Plan', :skip do
describe 'Epics roadmap' do describe 'Epics roadmap' do
include Support::Dates
let(:epic) do let(:epic) do
EE::Resource::Epic.fabricate_via_api! do |epic| EE::Resource::Epic.fabricate_via_api! do |epic|
current_date = DateTime.now
current_date_yyyy_mm_dd = current_date.strftime("%Y/%m/%d")
next_month_date_yyyy_mm_dd = current_date.next_month.strftime("%Y/%m/%d")
epic.title = 'Epic created via API to test roadmap' epic.title = 'Epic created via API to test roadmap'
epic.start_date_is_fixed = true epic.start_date_is_fixed = true
epic.start_date_fixed = current_date_yyyy_mm_dd epic.start_date_fixed = current_date_yyyy_mm_dd
epic.due_date_is_fixed = true epic.due_date_is_fixed = true
epic.due_date_fixed = next_month_date_yyyy_mm_dd epic.due_date_fixed = next_month_yyyy_mm_dd
end end
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment