summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Fitzgerald <rwfitzge@gmail.com>2014-04-28 00:50:29 -0700
committerRyan Fitzgerald <rwfitzge@gmail.com>2014-04-28 00:50:42 -0700
commitc9affb2c166f2bb9d8f56014d3b8799a620d79db (patch)
tree42e1ce8f215becb7adfcedbc7ee9ac6ffe860fd1
parentf27e718cfe40a5927e7eeae97d6bdd8c5a1c229a (diff)
downloadpry-c9affb2c166f2bb9d8f56014d3b8799a620d79db.tar.gz
Uncomment fixed regression spec
-rw-r--r--spec/commands/cd_spec.rb11
1 files 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