Skip to content

Commit

Permalink
Update README and linuxmain
Browse files Browse the repository at this point in the history
  • Loading branch information
mattpolzin committed Dec 6, 2018
1 parent 1f83216 commit 8defe82
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ Note that Playground support for importing non-system Frameworks is still a bit

#### Relationship Object
- [x] `data`
- [x] `links` (untested)
- [x] `meta` (untested)
- [x] `links`
- [x] `meta`

#### Links Object
- [x] `href`
Expand Down
15 changes: 15 additions & 0 deletions Tests/JSONAPITests/XCTestManifests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ extension APIDescriptionTests {
static let __allTests = [
("test_empty", test_empty),
("test_failsMissingMeta", test_failsMissingMeta),
("test_NoDescriptionString", test_NoDescriptionString),
("test_WithMeta", test_WithMeta),
("test_WithVersion", test_WithVersion),
("test_WithVersionAndMeta", test_WithVersionAndMeta),
Expand Down Expand Up @@ -195,6 +196,7 @@ extension EntityTests {
("test_nullableRelationshipNotNull_encode", test_nullableRelationshipNotNull_encode),
("test_NullOptionalNullableAttribute", test_NullOptionalNullableAttribute),
("test_NullOptionalNullableAttribute_encode", test_NullOptionalNullableAttribute_encode),
("test_pointerWithMetaAndLinks", test_pointerWithMetaAndLinks),
("test_relationship_access", test_relationship_access),
("test_relationship_operator_access", test_relationship_operator_access),
("test_relationshipIds", test_relationshipIds),
Expand Down Expand Up @@ -300,9 +302,21 @@ extension RelationshipTests {
("test_initToManyWithRelationships", test_initToManyWithRelationships),
("test_ToManyRelationship", test_ToManyRelationship),
("test_ToManyRelationship_encode", test_ToManyRelationship_encode),
("test_ToManyRelationshipWithLinks", test_ToManyRelationshipWithLinks),
("test_ToManyRelationshipWithLinks_encode", test_ToManyRelationshipWithLinks_encode),
("test_ToManyRelationshipWithMeta", test_ToManyRelationshipWithMeta),
("test_ToManyRelationshipWithMeta_encode", test_ToManyRelationshipWithMeta_encode),
("test_ToManyRelationshipWithMetaAndLinks", test_ToManyRelationshipWithMetaAndLinks),
("test_ToManyRelationshipWithMetaAndLinks_encode", test_ToManyRelationshipWithMetaAndLinks_encode),
("test_ToManyTypeMismatch", test_ToManyTypeMismatch),
("test_ToOneRelationship", test_ToOneRelationship),
("test_ToOneRelationship_encode", test_ToOneRelationship_encode),
("test_ToOneRelationshipWithLinks", test_ToOneRelationshipWithLinks),
("test_ToOneRelationshipWithLinks_encode", test_ToOneRelationshipWithLinks_encode),
("test_ToOneRelationshipWithMeta", test_ToOneRelationshipWithMeta),
("test_ToOneRelationshipWithMeta_encode", test_ToOneRelationshipWithMeta_encode),
("test_ToOneRelationshipWithMetaAndLinks", test_ToOneRelationshipWithMetaAndLinks),
("test_ToOneRelationshipWithMetaAndLinks_encode", test_ToOneRelationshipWithMetaAndLinks_encode),
("test_ToOneTypeMismatch", test_ToOneTypeMismatch),
]
}
Expand All @@ -317,6 +331,7 @@ extension Relationship_LiteralTests {

extension ResourceBodyTests {
static let __allTests = [
("test_initializers", test_initializers),
("test_manyResourceBody", test_manyResourceBody),
("test_manyResourceBody_encode", test_manyResourceBody_encode),
("test_manyResourceBodyEmpty", test_manyResourceBodyEmpty),
Expand Down

0 comments on commit 8defe82

Please sign in to comment.