aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorclaudiob <claudiob@gmail.com>2013-09-09 14:19:09 -0700
committerclaudiob <claudiob@gmail.com>2013-09-09 14:19:09 -0700
commit61d2391352cf43feb7684de50053670e9733311c (patch)
treecbdf53c9040e46f7c780eec84b9eb6924320f6c8 /actionpack
parent1385ae138d701174916a3c44d8bc8b92f3dd3aeb (diff)
downloadrails-61d2391352cf43feb7684de50053670e9733311c.tar.gz
rails-61d2391352cf43feb7684de50053670e9733311c.tar.bz2
rails-61d2391352cf43feb7684de50053670e9733311c.zip
Remove helper fixtures not used in any test
The fixture for module AbcHelper defines three functions bare_a, bare_b and bare_c, but only bare_a is used in the code that tests helper functions.
Diffstat (limited to 'actionpack')
-rw-r--r--actionpack/test/fixtures/helpers/abc_helper.rb2
1 files changed, 0 insertions, 2 deletions
diff --git a/actionpack/test/fixtures/helpers/abc_helper.rb b/actionpack/test/fixtures/helpers/abc_helper.rb
index 7104ff3730..cf2774bb5f 100644
--- a/actionpack/test/fixtures/helpers/abc_helper.rb
+++ b/actionpack/test/fixtures/helpers/abc_helper.rb
@@ -1,5 +1,3 @@
module AbcHelper
def bare_a() end
- def bare_b() end
- def bare_c() end
end