assert_include is not available before 1.9

This commit is contained in:
José Valim 2012-07-21 10:01:27 +02:00
parent 77b873a9a4
commit b813646076

View File

@ -446,8 +446,8 @@ class SerializerTest < ActiveModel::TestCase
as_json = serializer.as_json as_json = serializer.as_json
assert_equal 2, as_json.size assert_equal 2, as_json.size
assert_include(as_json, { :title => "Post1" }) assert as_json.include?({ :title => "Post1" })
assert_include(as_json, { :title => "Post2" }) assert as_json.include?({ :title => "Post2" })
end end
class CustomBlog < Blog class CustomBlog < Blog