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
Conrad Irwin 513fc182ca Fix #1196
2014-04-27 14:13:48 -07:00

24 lines
485 B
Ruby

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