aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorYasuo Honda <yasuo.honda@gmail.com>2018-05-01 23:53:38 +0000
committerYasuo Honda <yasuo.honda@gmail.com>2018-05-02 00:00:19 +0000
commitcd739c3daa8ec221bd614fcd299a93781998a1b3 (patch)
treecc0512c1b30145f7487aae860fb4bf2e7f324085 /activerecord
parentdb7416cda0700876ad3438774b804eb80a05a758 (diff)
downloadrails-cd739c3daa8ec221bd614fcd299a93781998a1b3.tar.gz
rails-cd739c3daa8ec221bd614fcd299a93781998a1b3.tar.bz2
rails-cd739c3daa8ec221bd614fcd299a93781998a1b3.zip
Remove unused `assert_like` from `Arel::Test`
It had been added at https://github.com/rails/arel/commit/05b5bb12270b32e094c1c879273e0978dabe5b3b and removed at https://github.com/rails/arel/commit/db1bb4e9a728a437d16f8bdb48c3b772c3e4edb0
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/test/cases/arel/helper.rb5
1 files changed, 0 insertions, 5 deletions
diff --git a/activerecord/test/cases/arel/helper.rb b/activerecord/test/cases/arel/helper.rb
index ec08df316c..f8ce658440 100644
--- a/activerecord/test/cases/arel/helper.rb
+++ b/activerecord/test/cases/arel/helper.rb
@@ -24,11 +24,6 @@ module Arel
Arel::Table.engine = @arel_engine if defined? @arel_engine
super
end
-
- def assert_like(expected, actual)
- assert_equal expected.gsub(/\s+/, " ").strip,
- actual.gsub(/\s+/, " ").strip
- end
end
class Spec < Minitest::Spec