Skip to content

Commit

Permalink
Created hash module test file skeleton
Browse files Browse the repository at this point in the history
  • Loading branch information
kelvinmwinuka committed Feb 14, 2024
1 parent 5bb7d19 commit b1893c1
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions src/modules/hash/commands_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
package hash

import (
"testing"
)

func Test_HandleHSET(t *testing.T) {
// TODO: test HSET and HSETNX
}

func Test_HandleHINCRBY(t *testing.T) {
// TODO: test HINCRBY and HINCRBYFLOAT
}

func Test_HandleHGET(t *testing.T) {}

func Test_HandleHSTRLEN(t *testing.T) {}

func Test_HandleHVALS(t *testing.T) {}

func Test_HandleHRANDFIELD(t *testing.T) {}

func Test_HandleHLEN(t *testing.T) {}

func Test_HandleHKeys(t *testing.T) {}

func Test_HandleHGETALL(t *testing.T) {}

func Test_HandleHEXISTS(t *testing.T) {}

func Test_HandleHDEL(t *testing.T) {}

0 comments on commit b1893c1

Please sign in to comment.