mirror of
https://github.com/pry/pry.git
synced 2022-11-09 12:35:05 -05:00
18 lines
319 B
Ruby
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
|