From b49a0e24bc8b71f7c4d7517f56c86c6e45cbce51 Mon Sep 17 00:00:00 2001 From: Kelvin Mwinuka Date: Thu, 14 Mar 2024 23:55:14 +0800 Subject: [PATCH] Created command test file in pubsub module --- src/modules/pubsub/commands_test.go | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 src/modules/pubsub/commands_test.go diff --git a/src/modules/pubsub/commands_test.go b/src/modules/pubsub/commands_test.go new file mode 100644 index 0000000..56db591 --- /dev/null +++ b/src/modules/pubsub/commands_test.go @@ -0,0 +1,27 @@ +package pubsub + +import "testing" + +func Test_HandleSubscribe(t *testing.T) { + +} + +func Test_HandleUnsubscribe(t *testing.T) { + +} + +func Test_HandlePublish(t *testing.T) { + +} + +func Test_HandlePubSubChannels(t *testing.T) { + +} + +func Test_HandleNumPat(t *testing.T) { + +} + +func Test_HandleNumSub(t *testing.T) { + +}