Tests set should_load/should_save instead of load/save on config.history

This commit is contained in:
David Palm 2011-06-09 12:26:57 +02:00
parent 34f85aa3a9
commit e82e826688
1 changed files with 3 additions and 2 deletions

View File

@ -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