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

25 lines
485 B
Ruby
Raw Normal View History

require_relative '../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
2014-04-15 15:20:52 -04:00
it 'should not clear the input buffer for negation' do
@t.push '! false'
@t.last_output.should =~ /true/
@t.eval_string.should == ''
end
end