pry--pry/spec/commands/bang_spec.rb

19 lines
319 B
Ruby
Raw Normal View History

require 'helper'
describe "!" do
before do
@t = pry_tester
end
it 'should correctly clear the input buffer ' do
2012-12-28 06:06:50 +00:00
@t.push unindent(<<-STR)
def hello
puts :bing
STR
2012-12-18 08:52:55 +00:00
@t.process_command '!'
@t.last_output.should =~ /Input buffer cleared!/
2012-12-18 08:52:55 +00:00
@t.eval_string.should == ''
end
end