Skip to content

Instantly share code, notes, and snippets.

View jmgarnier's full-sized avatar
💭
❤️🚲

Jean-Michel Garnier jmgarnier

💭
❤️🚲
View GitHub Profile
# Monday is 26/01/2009, Sunday is 01/02/2009
# I have to use a constand because RSpec can not access variables outside of "it" blocks ...
TWENTY_SIX_OF_JANUARY_20009 = "26/01/2009".to_date_with_european_date_format
describe "On going events" do
before :each do
@event = create_ongoing_event_for_barcelona(
:starts_at => TWENTY_SIX_OF_JANUARY_20009,
:ends_at => "01/02/2009".to_date_with_european_date_format)