This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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) |
NewerOlder