From e82e82668812b60c5efe9efc80c50d4912ed9c54 Mon Sep 17 00:00:00 2001 From: David Palm Date: Thu, 9 Jun 2011 12:26:57 +0200 Subject: [PATCH] Tests set should_load/should_save instead of load/save on config.history --- test/helper.rb | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test/helper.rb b/test/helper.rb index 6f5ff270..ac08825e 100644 --- a/test/helper.rb +++ b/test/helper.rb @@ -3,6 +3,7 @@ unless Object.const_defined? 'Pry' require 'pry' end +require 'rubygems' require 'bacon' require 'open4' @@ -20,8 +21,8 @@ class << Pry Pry.pager = false Pry.config.should_load_rc = false Pry.config.plugins.enabled = false - Pry.config.history.load = false - Pry.config.history.save = false + Pry.config.history.should_load = false + Pry.config.history.should_save = false end end