aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch/testing/assertions/selector.rb
diff options
context:
space:
mode:
authorSantiago Pastorino <santiago@wyeworks.com>2012-03-30 11:39:18 -0300
committerSantiago Pastorino <santiago@wyeworks.com>2012-03-30 11:45:12 -0300
commit5c7bb86a1bafbc6f067452768f37e566d6020918 (patch)
treed00ebf66ebc5e53e47d3265ed2ccb62e42912aa6 /actionpack/lib/action_dispatch/testing/assertions/selector.rb
parent5284e650be321273a2bb68bf4baa8adeb6bc586b (diff)
downloadrails-5c7bb86a1bafbc6f067452768f37e566d6020918.tar.gz
rails-5c7bb86a1bafbc6f067452768f37e566d6020918.tar.bz2
rails-5c7bb86a1bafbc6f067452768f37e566d6020918.zip
Remove the leading \n added by textarea on assert_select
Diffstat (limited to 'actionpack/lib/action_dispatch/testing/assertions/selector.rb')
-rw-r--r--actionpack/lib/action_dispatch/testing/assertions/selector.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/actionpack/lib/action_dispatch/testing/assertions/selector.rb b/actionpack/lib/action_dispatch/testing/assertions/selector.rb
index b4555f4f59..afbd869152 100644
--- a/actionpack/lib/action_dispatch/testing/assertions/selector.rb
+++ b/actionpack/lib/action_dispatch/testing/assertions/selector.rb
@@ -269,6 +269,7 @@ module ActionDispatch
end
end
text.strip! unless NO_STRIP.include?(match.name)
+ text.sub!(/\A\n/, '') if match.name == "textarea"
unless match_with.is_a?(Regexp) ? (text =~ match_with) : (text == match_with.to_s)
content_mismatch ||= build_message(message, "<?> expected but was\n<?>.", match_with, text)
true