Skip to content

Instantly share code, notes, and snippets.

@markiz
markiz / .gitignore
Created December 7, 2011 13:35 — forked from FND/.gitignore
test case for apparent DataMapper bug when recursively saving associations
Gemfile.lock
describe MyController, "GET index" do
let(:cookie_value) { "of course" }
it "should delete the cookie" do
request.cookies[:awesome] = cookie_value
get :index
cookies[:awesome].should == cookie_value
end
end