aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test/edge_rails.rb
diff options
context:
space:
mode:
authorCarlhuda <carlhuda@engineyard.com>2010-02-23 17:31:17 -0800
committerCarlhuda <carlhuda@engineyard.com>2010-02-23 17:31:17 -0800
commit24ab5665b2f12a589e96a4b742cc49c08bf0e9df (patch)
treecbc703c96affe65fe8f0b24c6b6241286c820ba8 /railties/test/edge_rails.rb
parent5e2bd08023344f3fd4675e80203a10967ffe9000 (diff)
downloadrails-24ab5665b2f12a589e96a4b742cc49c08bf0e9df.tar.gz
rails-24ab5665b2f12a589e96a4b742cc49c08bf0e9df.tar.bz2
rails-24ab5665b2f12a589e96a4b742cc49c08bf0e9df.zip
Revert "Fix test load paths for those not using bundler"
This reverts commit eec2d301d4ce9df9c71c1a5aa63053eb970b6818. This commit broke tests. You cannot have a file called "bundler" on the load path.
Diffstat (limited to 'railties/test/edge_rails.rb')
-rw-r--r--railties/test/edge_rails.rb14
1 files changed, 0 insertions, 14 deletions
diff --git a/railties/test/edge_rails.rb b/railties/test/edge_rails.rb
deleted file mode 100644
index bd8a674738..0000000000
--- a/railties/test/edge_rails.rb
+++ /dev/null
@@ -1,14 +0,0 @@
-require File.expand_path('../../../bundler', __FILE__)
-
-%w(
- actionmailer
- actionpack
- activemodel
- activerecord
- activeresource
- activesupport
- railties
-).each do |framework|
- framework_path = File.expand_path("../../../#{framework}/lib", __FILE__)
- $:.unshift(framework_path) if File.directory?(framework_path) && !$:.include?(framework_path)
-end