aboutsummaryrefslogtreecommitdiffstats
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
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.
-rw-r--r--actionpack/test/fixtures/helpers/abc_helper.rb2
-rw-r--r--actionview/test/fixtures/helpers/abc_helper.rb2
2 files changed, 0 insertions, 4 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
diff --git a/actionview/test/fixtures/helpers/abc_helper.rb b/actionview/test/fixtures/helpers/abc_helper.rb
index 7104ff3730..cf2774bb5f 100644
--- a/actionview/test/fixtures/helpers/abc_helper.rb
+++ b/actionview/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