Skip to content

Commit 8defe82

Browse files
committed
Update README and linuxmain
1 parent 1f83216 commit 8defe82

2 files changed

Lines changed: 17 additions & 2 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ Note that Playground support for importing non-system Frameworks is still a bit
5252

5353
#### Relationship Object
5454
- [x] `data`
55-
- [x] `links` (untested)
56-
- [x] `meta` (untested)
55+
- [x] `links`
56+
- [x] `meta`
5757

5858
#### Links Object
5959
- [x] `href`

Tests/JSONAPITests/XCTestManifests.swift

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ extension APIDescriptionTests {
44
static let __allTests = [
55
("test_empty", test_empty),
66
("test_failsMissingMeta", test_failsMissingMeta),
7+
("test_NoDescriptionString", test_NoDescriptionString),
78
("test_WithMeta", test_WithMeta),
89
("test_WithVersion", test_WithVersion),
910
("test_WithVersionAndMeta", test_WithVersionAndMeta),
@@ -195,6 +196,7 @@ extension EntityTests {
195196
("test_nullableRelationshipNotNull_encode", test_nullableRelationshipNotNull_encode),
196197
("test_NullOptionalNullableAttribute", test_NullOptionalNullableAttribute),
197198
("test_NullOptionalNullableAttribute_encode", test_NullOptionalNullableAttribute_encode),
199+
("test_pointerWithMetaAndLinks", test_pointerWithMetaAndLinks),
198200
("test_relationship_access", test_relationship_access),
199201
("test_relationship_operator_access", test_relationship_operator_access),
200202
("test_relationshipIds", test_relationshipIds),
@@ -300,9 +302,21 @@ extension RelationshipTests {
300302
("test_initToManyWithRelationships", test_initToManyWithRelationships),
301303
("test_ToManyRelationship", test_ToManyRelationship),
302304
("test_ToManyRelationship_encode", test_ToManyRelationship_encode),
305+
("test_ToManyRelationshipWithLinks", test_ToManyRelationshipWithLinks),
306+
("test_ToManyRelationshipWithLinks_encode", test_ToManyRelationshipWithLinks_encode),
307+
("test_ToManyRelationshipWithMeta", test_ToManyRelationshipWithMeta),
308+
("test_ToManyRelationshipWithMeta_encode", test_ToManyRelationshipWithMeta_encode),
309+
("test_ToManyRelationshipWithMetaAndLinks", test_ToManyRelationshipWithMetaAndLinks),
310+
("test_ToManyRelationshipWithMetaAndLinks_encode", test_ToManyRelationshipWithMetaAndLinks_encode),
303311
("test_ToManyTypeMismatch", test_ToManyTypeMismatch),
304312
("test_ToOneRelationship", test_ToOneRelationship),
305313
("test_ToOneRelationship_encode", test_ToOneRelationship_encode),
314+
("test_ToOneRelationshipWithLinks", test_ToOneRelationshipWithLinks),
315+
("test_ToOneRelationshipWithLinks_encode", test_ToOneRelationshipWithLinks_encode),
316+
("test_ToOneRelationshipWithMeta", test_ToOneRelationshipWithMeta),
317+
("test_ToOneRelationshipWithMeta_encode", test_ToOneRelationshipWithMeta_encode),
318+
("test_ToOneRelationshipWithMetaAndLinks", test_ToOneRelationshipWithMetaAndLinks),
319+
("test_ToOneRelationshipWithMetaAndLinks_encode", test_ToOneRelationshipWithMetaAndLinks_encode),
306320
("test_ToOneTypeMismatch", test_ToOneTypeMismatch),
307321
]
308322
}
@@ -317,6 +331,7 @@ extension Relationship_LiteralTests {
317331

318332
extension ResourceBodyTests {
319333
static let __allTests = [
334+
("test_initializers", test_initializers),
320335
("test_manyResourceBody", test_manyResourceBody),
321336
("test_manyResourceBody_encode", test_manyResourceBody_encode),
322337
("test_manyResourceBodyEmpty", test_manyResourceBodyEmpty),

0 commit comments

Comments
 (0)