Tonight I found out that RSpec is coding zen. For real! It was the first time I'd written my specs BEFORE the code (like you're sposed' to) and it just made my job a LOT easier. Here's what happened:
I wrote the specs:
describe "#make_urls" do
it "should replace /s with a +" do
make_urls(["oranges apples"]).should == ["oranges+apples"]
end
end
While I was writing the code, I'd accidentally used a method for string on an array. Upon testing the code, I couldn't, for the life of me, figure it out. Back in the day...