aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/autoloading_fixtures/a/c
diff options
context:
space:
mode:
authorKasper Timm Hansen <kaspth@gmail.com>2015-05-20 21:14:33 +0200
committerKasper Timm Hansen <kaspth@gmail.com>2015-05-22 23:30:08 +0200
commitafb6a2c08d9598c8e7b9037444619ed7809ed052 (patch)
tree2b80043c44853894145a86a00d1e6d78c5a6dfb0 /activesupport/test/autoloading_fixtures/a/c
parent7f60bedd7aca0c62d59e6f7971e73e214c2fb9db (diff)
downloadrails-afb6a2c08d9598c8e7b9037444619ed7809ed052.tar.gz
rails-afb6a2c08d9598c8e7b9037444619ed7809ed052.tar.bz2
rails-afb6a2c08d9598c8e7b9037444619ed7809ed052.zip
Avoid E constant clashing with Minitest defined version.
Minitest sets an E constant to an empty string to save GC time. This clashes with autoloading tests which define an E constant.
Diffstat (limited to 'activesupport/test/autoloading_fixtures/a/c')
-rw-r--r--activesupport/test/autoloading_fixtures/a/c/e/f.rb2
-rw-r--r--activesupport/test/autoloading_fixtures/a/c/em/f.rb2
2 files changed, 2 insertions, 2 deletions
diff --git a/activesupport/test/autoloading_fixtures/a/c/e/f.rb b/activesupport/test/autoloading_fixtures/a/c/e/f.rb
deleted file mode 100644
index 57dba5a307..0000000000
--- a/activesupport/test/autoloading_fixtures/a/c/e/f.rb
+++ /dev/null
@@ -1,2 +0,0 @@
-class A::C::E::F
-end \ No newline at end of file
diff --git a/activesupport/test/autoloading_fixtures/a/c/em/f.rb b/activesupport/test/autoloading_fixtures/a/c/em/f.rb
new file mode 100644
index 0000000000..8b28e19148
--- /dev/null
+++ b/activesupport/test/autoloading_fixtures/a/c/em/f.rb
@@ -0,0 +1,2 @@
+class A::C::EM::F
+end \ No newline at end of file