diff options
| -rw-r--r-- | attach.et | 4 | ||||
| -rw-r--r-- | chatroom.et | 2 | ||||
| -rw-r--r-- | contact.et | 2 | ||||
| -rw-r--r-- | network.et | 2 | ||||
| -rw-r--r-- | storage.et | 2 | ||||
| -rw-r--r-- | sync.et | 4 |
6 files changed, 14 insertions, 2 deletions
@@ -1,4 +1,6 @@ -test: +module attach + +test Attach: let services = "attach,sync" spawn as p1 diff --git a/chatroom.et b/chatroom.et index 54f9b2a..e49b4b8 100644 --- a/chatroom.et +++ b/chatroom.et @@ -1,3 +1,5 @@ +module chatroom + def refpat = /blake2#[0-9a-f]+/ test ChatroomSetup: @@ -1,3 +1,5 @@ +module contact + test Contact: let services = "attach,contact,sync" @@ -1,3 +1,5 @@ +module network + test Discovery: spawn as p1 spawn as p2 @@ -1,3 +1,5 @@ +module storage + import common test Storage: @@ -1,4 +1,6 @@ -test: +module sync + +test Sync: let services = "attach,sync" spawn as p1 |