mirror of
https://github.com/pry/pry.git
synced 2022-11-09 12:35:05 -05:00
e61354693f
Just discovered this nice feature of RSpec where it can load all files for us. Works with `bundle exec rake` and `bundle exec rspec spec/file_spec.rb`, which covers all use cases.
21 lines
592 B
Ruby
21 lines
592 B
Ruby
describe "Pry.run_command" do
|
|
before do
|
|
o = Object.new
|
|
def o.drum
|
|
"roken is dodelijk"
|
|
end
|
|
@context = Pry.binding_for(o)
|
|
end
|
|
|
|
it 'performs a simple ls' do
|
|
@context.eval("hokey_pokey = 10")
|
|
Pry.run_command "ls", context: @context, output: out = StringIO.new
|
|
expect(out.string).to match(/hokey_pokey/)
|
|
end
|
|
|
|
# This is a regression test as 0.9.11 broke this behaviour
|
|
it 'can perform a show-source' do
|
|
Pry.run_command "show-source drum", context: @context, output: out = StringIO.new
|
|
expect(out.string).to match(/roken is dodelijk/)
|
|
end
|
|
end
|