-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Created hash module test file skeleton
- Loading branch information
1 parent
5bb7d19
commit b1893c1
Showing
1 changed file
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) {} |