diff options
author | Pablo Herrero <pablodherrero@gmail.com> | 2013-04-12 15:40:30 -0300 |
---|---|---|
committer | Pablo Herrero <pablodherrero@gmail.com> | 2013-04-12 15:40:30 -0300 |
commit | 83d0232304a16fc7431b6778f80e42cc073b3600 (patch) | |
tree | 4b27f2ceb2577dc90e201edb215a4f104c45097d /railties/lib/rails/generators/testing | |
parent | 492e6b57d43524dd6183fd8f33e4bdd7e8e8ceeb (diff) | |
download | rails-83d0232304a16fc7431b6778f80e42cc073b3600.tar.gz rails-83d0232304a16fc7431b6778f80e42cc073b3600.tar.bz2 rails-83d0232304a16fc7431b6778f80e42cc073b3600.zip |
Extract method declaration regexp into a constant
Diffstat (limited to 'railties/lib/rails/generators/testing')
-rw-r--r-- | railties/lib/rails/generators/testing/assertions.rb | 4 |
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 |