1
0
Fork 0
mirror of https://github.com/pry/pry.git synced 2022-11-09 12:35:05 -05:00

Don't pollute Object with cvar

This commit is contained in:
Ryan Fitzgerald 2012-09-05 22:56:45 -07:00
parent f0a16e2cc3
commit 91e825c311

View file

@ -53,7 +53,7 @@ describe Pry::InputCompleter do
end
it 'should complete instance variables' do
object = Object.new
object = Class.new.new
# set variables in appropriate scope
object.instance_variable_set(:'@name', 'Pry')