Sha256: 484d185335537d504d4b0ff4402c8f080f52bb88533ac188bc0e88817947cdc6
Contents?: true
Size: 678 Bytes
Versions: 67
Compression:
Stored size: 678 Bytes
Contents
require '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 if !PryTestHelpers.mri18_and_no_real_source_location? # 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 end
Version data entries
67 entries across 67 versions & 5 rubygems