From c9affb2c166f2bb9d8f56014d3b8799a620d79db Mon Sep 17 00:00:00 2001 From: Ryan Fitzgerald Date: Mon, 28 Apr 2014 00:50:29 -0700 Subject: [PATCH] Uncomment fixed regression spec --- spec/commands/cd_spec.rb | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/spec/commands/cd_spec.rb b/spec/commands/cd_spec.rb index a156dd9d..32aa0c97 100644 --- a/spec/commands/cd_spec.rb +++ b/spec/commands/cd_spec.rb @@ -241,10 +241,9 @@ describe 'cd' do end # Regression test for ticket #516. - # FIXME: This is actually broken. - # it 'should be able to cd into the Object BasicObject' do - # proc { - # @t.eval 'cd BasicObject.new' - # }.should.not.raise - # end + it 'should be able to cd into the Object BasicObject' do + proc { + @t.eval 'cd BasicObject.new' + }.should.not.raise + end end