File: run_command_spec.rb

package info (click to toggle)
pry 0.10.1-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,792 kB
  • ctags: 1,704
  • sloc: ruby: 17,668; makefile: 16
file content (23 lines) | stat: -rw-r--r-- 615 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
require_relative 'helper'

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
    out.string.should =~ /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
    out.string.should =~ /roken is dodelijk/
  end
end