mirror of
https://github.com/pry/pry.git
synced 2022-11-09 12:35:05 -05:00
20 lines
327 B
Ruby
20 lines
327 B
Ruby
|
require 'helper'
|
||
|
|
||
|
describe "!" do
|
||
|
before do
|
||
|
@t = pry_tester
|
||
|
end
|
||
|
|
||
|
it 'should correctly clear the input buffer ' do
|
||
|
eval_str = unindent(<<-STR)
|
||
|
def hello
|
||
|
puts :bing
|
||
|
STR
|
||
|
|
||
|
@t.process_command '!', eval_str
|
||
|
@t.last_output.should =~ /Input buffer cleared!/
|
||
|
|
||
|
eval_str.should == ''
|
||
|
end
|
||
|
end
|