aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2013-10-30 16:14:02 -0700
committerAaron Patterson <aaron.patterson@gmail.com>2013-10-30 16:14:02 -0700
commita27d2d74f25110e4ebd8d44dc7fd1f44c103ca9e (patch)
tree983ca5a0a7cceb06e54d02d262757df682896385 /railties/test
parentbaaf9acaa7f4131c25be13c133eb6d958a88a571 (diff)
downloadrails-a27d2d74f25110e4ebd8d44dc7fd1f44c103ca9e.tar.gz
rails-a27d2d74f25110e4ebd8d44dc7fd1f44c103ca9e.tar.bz2
rails-a27d2d74f25110e4ebd8d44dc7fd1f44c103ca9e.zip
add a comment to people of the future
Diffstat (limited to 'railties/test')
-rw-r--r--railties/test/generators/argv_scrubber_test.rb6
1 files changed, 5 insertions, 1 deletions
diff --git a/railties/test/generators/argv_scrubber_test.rb b/railties/test/generators/argv_scrubber_test.rb
index 5b0a023428..5e86acfde5 100644
--- a/railties/test/generators/argv_scrubber_test.rb
+++ b/railties/test/generators/argv_scrubber_test.rb
@@ -5,7 +5,11 @@ require 'tempfile'
module Rails
module Generators
- class ARGVScrubberTest < ActiveSupport::TestCase
+ class ARGVScrubberTest < ActiveSupport::TestCase # :nodoc:
+ # Future people who read this... These tests are just to surround the
+ # current behavior of the ARGVScrubber, they do not mean that the class
+ # *must* act this way, I just want to prevent regressions.
+
def test_version
['-v', '--version'].each do |str|
scrubber = ARGVScrubber.new [str]