diff options
author | claudiob <claudiob@gmail.com> | 2013-09-09 14:19:09 -0700 |
---|---|---|
committer | claudiob <claudiob@gmail.com> | 2013-09-09 14:19:09 -0700 |
commit | 61d2391352cf43feb7684de50053670e9733311c (patch) | |
tree | cbdf53c9040e46f7c780eec84b9eb6924320f6c8 /actionview/test | |
parent | 1385ae138d701174916a3c44d8bc8b92f3dd3aeb (diff) | |
download | rails-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 'actionview/test')
-rw-r--r-- | actionview/test/fixtures/helpers/abc_helper.rb | 2 |
1 files changed, 0 insertions, 2 deletions
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 |