From a3ff3be5b17549a8178d69da6c0312a4c94bf9b4 Mon Sep 17 00:00:00 2001 From: Carlosokumu Date: Fri, 27 Sep 2024 16:32:47 +0300 Subject: [PATCH] clean up --- internal/handlers/ussd/menuhandler_test.go | 32 ++++++---------------- 1 file changed, 8 insertions(+), 24 deletions(-) diff --git a/internal/handlers/ussd/menuhandler_test.go b/internal/handlers/ussd/menuhandler_test.go index 283104a..83e6f0c 100644 --- a/internal/handlers/ussd/menuhandler_test.go +++ b/internal/handlers/ussd/menuhandler_test.go @@ -96,8 +96,6 @@ func TestCreateAccount(t *testing.T) { mockDataStore.AssertExpectations(t) } - - func TestWithPersister(t *testing.T) { // Test case: Setting a persister h := &Handlers{} @@ -117,7 +115,6 @@ func TestWithPersister_PanicWhenAlreadySet(t *testing.T) { }, "Should panic when trying to set a persister again.") } - func TestSaveFirstname(t *testing.T) { // Create a new instance of MockMyDataStore mockStore := new(mocks.MockUserDataStore) @@ -341,25 +338,19 @@ func TestSaveGender(t *testing.T) { expectCall: true, }, { - name: "Valid Female Input", - input: []byte("2"), - expectedGender: "female", + name: "Valid Female Input", + input: []byte("2"), + expectedGender: "female", executingSymbol: "set_female", - expectCall: true, + expectCall: true, }, { - name: "Valid Unspecified Input", - input: []byte("3"), + name: "Valid Unspecified Input", + input: []byte("3"), executingSymbol: "set_unspecified", - expectedGender: "unspecified", - expectCall: true, + expectedGender: "unspecified", + expectCall: true, }, - // { - // name: "Empty Input", - // input: []byte(""), - // expectedGender: "", - // expectCall: false, - // }, } for _, tt := range tests { @@ -588,13 +579,6 @@ func TestSetLanguage(t *testing.T) { Content: "swa", }, }, - // { - // name: "Unhandled path", - // execPath: []string{""}, - // expectedResult: resource.Result{ - // FlagSet: []uint32{8}, - // }, - // }, } for _, tt := range tests {