aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/lib
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2011-12-21 02:35:22 -0800
committerJosé Valim <jose.valim@gmail.com>2011-12-21 02:35:22 -0800
commit28e869d77ee8515c2fe21c6052d33ab41479a47e (patch)
tree11ff189ccf07795efc90d7b3f1a1e2ad1c0c5e87 /actionpack/test/lib
parent559196519a860e49886f586d0169aca23cbcdeb0 (diff)
parent7276fc63be79a5769acb28b54d248c87591c1825 (diff)
downloadrails-28e869d77ee8515c2fe21c6052d33ab41479a47e.tar.gz
rails-28e869d77ee8515c2fe21c6052d33ab41479a47e.tar.bz2
rails-28e869d77ee8515c2fe21c6052d33ab41479a47e.zip
Merge pull request #4090 from arunagw/more_more_more_187_removal
Removed test which works only < 1.9
Diffstat (limited to 'actionpack/test/lib')
-rw-r--r--actionpack/test/lib/testing_sandbox.rb15
1 files changed, 0 insertions, 15 deletions
diff --git a/actionpack/test/lib/testing_sandbox.rb b/actionpack/test/lib/testing_sandbox.rb
deleted file mode 100644
index c36585104f..0000000000
--- a/actionpack/test/lib/testing_sandbox.rb
+++ /dev/null
@@ -1,15 +0,0 @@
-module TestingSandbox
- # Temporarily replaces KCODE for the block
- def with_kcode(kcode)
- if RUBY_VERSION < '1.9'
- old_kcode, $KCODE = $KCODE, kcode
- begin
- yield
- ensure
- $KCODE = old_kcode
- end
- else
- yield
- end
- end
-end