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
2012-12-27 22:06:50 -08:00

18 lines
319 B
Ruby

require 'helper'
describe "!" do
before do
@t = pry_tester
end
it 'should correctly clear the input buffer ' do
@t.push unindent(<<-STR)
def hello
puts :bing
STR
@t.process_command '!'
@t.last_output.should =~ /Input buffer cleared!/
@t.eval_string.should == ''
end
end