From 463fb8addba37c2caf578b6539e21419b2509688 Mon Sep 17 00:00:00 2001 From: Zahary Karadjov Date: Wed, 14 Aug 2019 12:25:02 +0300 Subject: [PATCH] wip --- tests/test_all.nim | 3 +++ tests/test_object_serialization.nim | 4 ++++ 2 files changed, 7 insertions(+) create mode 100644 tests/test_all.nim create mode 100644 tests/test_object_serialization.nim diff --git a/tests/test_all.nim b/tests/test_all.nim new file mode 100644 index 0000000..446e4f7 --- /dev/null +++ b/tests/test_all.nim @@ -0,0 +1,3 @@ +import + test_object_serialization + diff --git a/tests/test_object_serialization.nim b/tests/test_object_serialization.nim new file mode 100644 index 0000000..0e05a1b --- /dev/null +++ b/tests/test_object_serialization.nim @@ -0,0 +1,4 @@ +import + ../serialization/object_serialization, + ../serialization/testing/generic_suite +