Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Hey hey, adding calendar events was really easy! Writing specs for them was not.
I've written specs, and they pass, but they won't pass at the same time as the rest of your passing specs. If you run
spec/bcx/calendar_event_spec.rbon its own, the specs will pass. If you runrake specthe calendar event specs will fail.At first I was having trouble recording cassettes of my specs. The requests were not working, for one reason or another. It turned our that
faradaymay have been responsible, according to this VCR issue. Not sure! The other problem was that you test user has run out of time. I switched VCR fromfaradaytowebmocksas was suggested in the VCR Getting Started guide. Then I created a new test user and recorded my specs using that user and the new setup. When I returned to run the specs again, I the oldfaradayspecs were all failing since their cassettes were not loading and the id's in the specs were all wrong. Finally I threw up my hands and said "nope nope nope"!That's my story, and I'm sticking to it. Sorry I could get both sets of specs passing at the same time.