2014-03-14 00:31:24 -04:00
|
|
|
require_relative '../helper'
|
2012-09-15 17:50:15 -04:00
|
|
|
|
|
|
|
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)
|
2012-09-15 17:50:15 -04:00
|
|
|
def hello
|
|
|
|
puts :bing
|
|
|
|
STR
|
|
|
|
|
2012-12-18 03:52:55 -05:00
|
|
|
@t.process_command '!'
|
2012-09-15 17:50:15 -04:00
|
|
|
@t.last_output.should =~ /Input buffer cleared!/
|
2012-12-18 03:52:55 -05:00
|
|
|
@t.eval_string.should == ''
|
2012-09-15 17:50:15 -04:00
|
|
|
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
|
2012-09-15 17:50:15 -04:00
|
|
|
end
|