From f0c7843b16d5b7984154b8ad2a29303101aef070 Mon Sep 17 00:00:00 2001 From: lumtis Date: Tue, 20 Feb 2024 17:42:39 +0100 Subject: [PATCH] initialize outbound tests --- x/observer/keeper/vote_outbound_test.go | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 x/observer/keeper/vote_outbound_test.go diff --git a/x/observer/keeper/vote_outbound_test.go b/x/observer/keeper/vote_outbound_test.go new file mode 100644 index 0000000000..55f97b2b46 --- /dev/null +++ b/x/observer/keeper/vote_outbound_test.go @@ -0,0 +1,17 @@ +package keeper_test + +import "testing" + +func TestKeeper_VoteOnOutboundBallot(t *testing.T) { + t.Run("fail if chain is not supported", func(t *testing.T) { + + }) + + t.Run("fail if sender is not authorized", func(t *testing.T) { + + }) + + t.Run("fail if sender is not authorized", func(t *testing.T) { + + }) +}