mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-01-27 18:57:58 -05:00
21 lines
656 B
Ruby
21 lines
656 B
Ruby
shared_examples "append date" do
|
|
let(:this_month) { Date.today.strftime("%B") }
|
|
let(:this_year) { Date.today.strftime("%Y") }
|
|
|
|
background { visit path }
|
|
|
|
scenario "Selecting a date with datepicker" do
|
|
click_link link_text
|
|
within "div.datepicker" do
|
|
expect(page).to have_content "#{this_month}"
|
|
find(".datepicker-days td.day", text: "21").click
|
|
end
|
|
expect(page).to have_content "Finished: #{this_month} 21, #{this_year}"
|
|
end
|
|
|
|
scenario "Confirming without selecting date" do
|
|
click_link link_text
|
|
click_link "Confirm without date"
|
|
expect(page).to have_content("Finished: Yes (no date specified) ")
|
|
end
|
|
end |