aboutsummaryrefslogtreecommitdiffstats
path: root/spec/matchers/be_like.rb
diff options
context:
space:
mode:
authorBryan Helmkamp <bryan@brynary.com>2009-05-17 16:20:40 -0400
committerBryan Helmkamp <bryan@brynary.com>2009-05-17 16:20:40 -0400
commitdc7b51883b1cc8ad7e525b7315fb575ae77a5b3d (patch)
tree97f5e4d55baa45f9805eb36a2196bcc12094ae3a /spec/matchers/be_like.rb
parent19b2af181009acfcb24d156ca350c148630e6787 (diff)
downloadrails-dc7b51883b1cc8ad7e525b7315fb575ae77a5b3d.tar.gz
rails-dc7b51883b1cc8ad7e525b7315fb575ae77a5b3d.tar.bz2
rails-dc7b51883b1cc8ad7e525b7315fb575ae77a5b3d.zip
Whitespace
Diffstat (limited to 'spec/matchers/be_like.rb')
-rw-r--r--spec/matchers/be_like.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/spec/matchers/be_like.rb b/spec/matchers/be_like.rb
index 4ff5bc532f..c9d4d4b979 100644
--- a/spec/matchers/be_like.rb
+++ b/spec/matchers/be_like.rb
@@ -3,22 +3,22 @@ module BeLikeMatcher
def initialize(expected)
@expected = expected
end
-
+
def matches?(actual)
@actual = actual
@expected.gsub(/\s+/, ' ').strip == @actual.gsub(/\s+/, ' ').strip
end
-
+
def failure_message
"expected\n#{@actual}\nto be like\n#{@expected}"
end
-
+
def negative_failure_message
"expected\n#{@actual}\nto be unlike\n#{@expected}"
end
end
-
+
def be_like(expected)
BeLike.new(expected)
end
-end \ No newline at end of file
+end