-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix person fixtures and create place unit test
- Loading branch information
Maria Lorena Rodriguez Viruel
committed
Aug 28, 2024
1 parent
b38f98f
commit 1405da0
Showing
10 changed files
with
70 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
uuid,saved_timestamp,contact_type | ||
p1,2024-08-01 00:00:00,person | ||
p2,2024-08-01 00:00:00,person | ||
p3,2024-08-02 00:00:00,clinic | ||
p4,2024-08-02 00:00:00,clinic |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
uuid,saved_timestamp,date_of_birth,sex | ||
p1,2024-08-01 00:00:00,1980-01-01,M | ||
p2,2024-08-01 00:00:00,1990-05-15,F | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
_id,saved_timestamp,_deleted,doc | ||
p1,2024-08-01 00:00:00,false,"{""date_of_birth"": ""1980-01-01"", ""sex"": ""M""}" | ||
p2,2024-08-01 00:00:00,false,"{""date_of_birth"": ""1990-05-15"", ""sex"": ""F""}" | ||
p3,2024-08-02 00:00:00,false,"{""type"": ""clinic""}" | ||
p4,2024-08-02 00:00:00,false,"{""type"": ""clinic""}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
uuid,saved_timestamp,contact_type | ||
p1,2024-08-01 00:00:00,clinic | ||
p2,2024-08-01 00:00:00,health_center | ||
p3,2024-08-02 00:00:00,district_hospital | ||
p4,2024-08-02 00:00:00,person | ||
p5,2024-08-02 00:00:00,contact |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
uuid,saved_timestamp,place_id | ||
p1,2024-08-01 00:00:00,P-001 | ||
p2,2024-08-01 00:00:00,P-002 | ||
p3,2024-08-02 00:00:00,P-003 | ||
p5,2024-08-02 00:00:00,P-004 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
_id,saved_timestamp,_deleted,doc | ||
p1,2024-08-01 00:00:00,false,"{""place_id"": ""P-001"", ""type"": ""clinic""}" | ||
p2,2024-08-01 00:00:00,false,"{""place_id"": ""P-002"", ""type"": ""health_center""}" | ||
p3,2024-08-02 00:00:00,false,"{""place_id"": ""P-003"", ""type"": ""district_hospital""}" | ||
p4,2024-08-02 00:00:00,false,"{""type"": ""person""}" | ||
p5,2024-08-02 00:00:00,false,"{""place_id"": ""P-004"", ""type"": ""contact""}" |