Slide 89
Slide 89 text
@kevin_j_m
scenario “Viewing a data collection event” do
collected_at = Time.zone.local(2019, 5, 1, 15, 30)
collection_event = create :data_collection_event,
created_at: collected_at
visit data_collection_event_path(collection_event)
within ".summary-information .collected-date" do
expect(page).to have_content "May 1, 2019"
end
end