Skip to content

Commit

Permalink
Merge pull request #798 from donbobka/feature/fix_lost_test
Browse files Browse the repository at this point in the history
Fix lost test `test_include_multiple_posts_and_linked`
  • Loading branch information
kurko committed Mar 1, 2015
2 parents a824376 + 54d6696 commit 3505bc6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/adapter/json_api/linked_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ def test_include_multiple_posts_and_linked
@second_comment.post = @first_post
@second_comment.author = nil
assert_equal([
{ title: "Hello!!", body: "Hello, world!!", id: "1", links: { comments: ['1', '2'], author: "1" } },
{ title: "New Post", body: "Body", id: "2", links: { comments: [], :author => "2" } }
{ title: "Hello!!", body: "Hello, world!!", id: "1", links: { comments: ['1', '2'], blog: "999", author: "1" } },
{ title: "New Post", body: "Body", id: "2", links: { comments: [], blog: "999", author: "2" } }
], @adapter.serializable_hash[:posts])


Expand All @@ -69,7 +69,7 @@ def test_include_multiple_posts_and_linked
id: "1",
name: "Steve K.",
links: {
posts: ["1"],
posts: ["1", "3"],
roles: [],
bio: "1"
}
Expand Down Expand Up @@ -99,7 +99,7 @@ def test_include_multiple_posts_and_linked
assert_equal expected, @adapter.serializable_hash[:linked]
end

def test_include_multiple_posts_and_linked
def test_include_bio_and_linked
@serializer = BioSerializer.new(@bio1)
@adapter = ActiveModel::Serializer::Adapter::JsonApi.new(@serializer, include: 'author,author.posts')

Expand Down

0 comments on commit 3505bc6

Please sign in to comment.