diff options
author | John Mair <jrmair@gmail.com> | 2011-02-28 03:40:47 +1300 |
---|---|---|
committer | John Mair <jrmair@gmail.com> | 2011-02-28 03:40:47 +1300 |
commit | 52ef85631d136a4ff31c0f4c2587b19db3daf512 (patch) | |
tree | fcad597e22e22a576fd6ac74b878e89785012d67 /test/test_helper.rb | |
parent | 8f6b36637263a79ae4ac96ec734b1851614a4e19 (diff) | |
download | method_source-dev.tar.gz |
version 0.3.0, some ruby 1.8 supportdev
Diffstat (limited to 'test/test_helper.rb')
-rw-r--r-- | test/test_helper.rb | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/test/test_helper.rb b/test/test_helper.rb index 78ef513..bb28e29 100644 --- a/test/test_helper.rb +++ b/test/test_helper.rb @@ -1,4 +1,10 @@ - # A comment for hello +class String + def clear + replace("") + end +end + +# A comment for hello # It spans two lines and is indented by 2 spaces def hello; :hello; end |