Skip to content

Commit

Permalink
more failing specs
Browse files Browse the repository at this point in the history
  • Loading branch information
jamis committed Oct 14, 2024
1 parent f758ec8 commit 236a1de
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions spec/mongoid/serializable_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -528,13 +528,13 @@
end

it "includes the first relation" do
expect(relation_hash[0]).to include
{ "_id" => "kudamm", "street" => "Kudamm" }
expect(relation_hash[0]).to include(
{ "_id" => "kudamm", "street" => "Kudamm" })
end

it "includes the second relation" do
expect(relation_hash[1]).to include
{ "_id" => "tauentzienstr", "street" => "Tauentzienstr" }
expect(relation_hash[1]).to include(
{ "_id" => "tauentzienstr", "street" => "Tauentzienstr" })
end
end

Expand All @@ -545,13 +545,13 @@
end

it "includes the first relation" do
expect(relation_hash[0]).to include
{ "_id" => "kudamm", "street" => "Kudamm" }
expect(relation_hash[0]).to include(
{ "_id" => "kudamm", "street" => "Kudamm" })
end

it "includes the second relation" do
expect(relation_hash[1]).to include
{ "_id" => "tauentzienstr", "street" => "Tauentzienstr" }
expect(relation_hash[1]).to include(
{ "_id" => "tauentzienstr", "street" => "Tauentzienstr" })
end
end

Expand Down Expand Up @@ -670,8 +670,8 @@
end

it "includes the specified relation" do
expect(relation_hash).to include
{ "_id" => "leo-marvin", "first_name" => "Leo", "last_name" => "Marvin" }
expect(relation_hash).to include(
{ "_id" => "Leo-Marvin", "first_name" => "Leo", "last_name" => "Marvin" })
end
end

Expand Down

0 comments on commit 236a1de

Please sign in to comment.