aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_signald.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_signald.py')
-rw-r--r--tests/test_signald.py9
1 files changed, 6 insertions, 3 deletions
diff --git a/tests/test_signald.py b/tests/test_signald.py
index 8824272..801192b 100644
--- a/tests/test_signald.py
+++ b/tests/test_signald.py
@@ -1,5 +1,8 @@
-from signald import Signal
-
-
def test_signal():
+ from signald import Signal
+ from signald.types import Message, Attachment
+
+ # Smoke tests.
Signal("+1234567890")
+ Message("+1234567890", "+1234567891", "Hello!")
+ Attachment("application/json", "123", 123, "/var/123")