@@ -95,11 +95,10 @@ def test_blog_create(client):
95
95
96
96
expected = {
97
97
'data' : {
98
- 'attributes' : {'name' : blog .name },
98
+ 'attributes' : {'name' : blog .name , 'tags' : [] },
99
99
'id' : '{}' .format (blog .id ),
100
100
'links' : {'self' : 'http://testserver/blogs/{}' .format (blog .id )},
101
101
'meta' : {'copyright' : datetime .now ().year },
102
- 'relationships' : {'tags' : {'data' : []}},
103
102
'type' : 'blogs'
104
103
},
105
104
'meta' : {'apiDocs' : '/docs/api/blogs' }
@@ -116,11 +115,10 @@ def test_get_object_gives_correct_blog(client, blog, entry):
116
115
resp = client .get (url )
117
116
expected = {
118
117
'data' : {
119
- 'attributes' : {'name' : blog .name },
118
+ 'attributes' : {'name' : blog .name , 'tags' : [] },
120
119
'id' : '{}' .format (blog .id ),
121
120
'links' : {'self' : 'http://testserver/blogs/{}' .format (blog .id )},
122
121
'meta' : {'copyright' : datetime .now ().year },
123
- 'relationships' : {'tags' : {'data' : []}},
124
122
'type' : 'blogs'
125
123
},
126
124
'meta' : {'apiDocs' : '/docs/api/blogs' }
@@ -154,11 +152,10 @@ def test_get_object_patches_correct_blog(client, blog, entry):
154
152
155
153
expected = {
156
154
'data' : {
157
- 'attributes' : {'name' : new_name },
155
+ 'attributes' : {'name' : new_name , 'tags' : [] },
158
156
'id' : '{}' .format (blog .id ),
159
157
'links' : {'self' : 'http://testserver/blogs/{}' .format (blog .id )},
160
158
'meta' : {'copyright' : datetime .now ().year },
161
- 'relationships' : {'tags' : {'data' : []}},
162
159
'type' : 'blogs'
163
160
},
164
161
'meta' : {'apiDocs' : '/docs/api/blogs' }
@@ -189,17 +186,14 @@ def test_get_entry_list_with_blogs(client, entry):
189
186
'first' : 'http://testserver/drf-entries/1/suggested/?page%5Bnumber%5D=1' ,
190
187
'last' : 'http://testserver/drf-entries/1/suggested/?page%5Bnumber%5D=1' ,
191
188
'next' : None ,
192
- 'prev' : None
189
+ 'prev' : None ,
193
190
},
194
191
'data' : [
195
192
{
196
193
'type' : 'entries' ,
197
194
'id' : '1' ,
198
- 'attributes' : {},
199
- 'relationships' : {
200
- 'tags' : {
201
- 'data' : []
202
- }
195
+ 'attributes' : {
196
+ 'tags' : [],
203
197
},
204
198
'links' : {
205
199
'self' : 'http://testserver/drf-blogs/1'
0 commit comments