aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
authorPablo Herrero <pablodherrero@gmail.com>2013-04-12 15:40:30 -0300
committerPablo Herrero <pablodherrero@gmail.com>2013-04-12 15:40:30 -0300
commit83d0232304a16fc7431b6778f80e42cc073b3600 (patch)
tree4b27f2ceb2577dc90e201edb215a4f104c45097d /railties
parent492e6b57d43524dd6183fd8f33e4bdd7e8e8ceeb (diff)
downloadrails-83d0232304a16fc7431b6778f80e42cc073b3600.tar.gz
rails-83d0232304a16fc7431b6778f80e42cc073b3600.tar.bz2
rails-83d0232304a16fc7431b6778f80e42cc073b3600.zip
Extract method declaration regexp into a constant
Diffstat (limited to 'railties')
-rw-r--r--railties/lib/rails/generators/testing/assertions.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/railties/lib/rails/generators/testing/assertions.rb b/railties/lib/rails/generators/testing/assertions.rb
index 6267b2f2ee..14fd4efd4e 100644
--- a/railties/lib/rails/generators/testing/assertions.rb
+++ b/railties/lib/rails/generators/testing/assertions.rb
@@ -2,6 +2,8 @@ module Rails
module Generators
module Testing
module Assertions
+ METHOD_DECLARATION_REGEXP = /(\s+)def #{method}(\(.+\))?(.*?)\n\1end/m
+
# Asserts a given file exists. You need to supply an absolute path or a path relative
# to the configured destination:
#
@@ -96,7 +98,7 @@ module Rails
# end
# end
def assert_instance_method(method, content)
- assert content =~ /(\s+)def #{method}(\(.+\))?(.*?)\n\1end/m, "Expected to have method #{method}"
+ assert content =~ METHOD_DECLARATION_REGEXP, "Expected to have method #{method}"
yield $3.strip if block_given?
end
alias :assert_method :assert_instance_method