1
0
Fork 0
mirror of https://github.com/pry/pry.git synced 2022-11-09 12:35:05 -05:00
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 01:06:50 -05:00
@t.push unindent(<<-STR)
def hello
puts :bing
STR
2012-12-18 03:52:55 -05:00
@t.process_command '!'
@t.last_output.should =~ /Input buffer cleared!/
2012-12-18 03:52:55 -05:00
@t.eval_string.should == ''
end
end