Skip to content

Commit

Permalink
NOP MOD - Review top level test code -- TESTED
Browse files Browse the repository at this point in the history
	- REVU notes on redis pkg testfiles
	- ADD stub test file for connection.go comps
  • Loading branch information
Joubin Houshyar committed Sep 20, 2012
1 parent 566ec3d commit b29f0cf
Show file tree
Hide file tree
Showing 6 changed files with 33 additions and 0 deletions.
4 changes: 4 additions & 0 deletions 0_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// REVU - only whitebox testing in redis package
// - freeze adding any more test code for client here
// TODO - move to blackbox redis/test package

package redis

import (
Expand Down
4 changes: 4 additions & 0 deletions asynchclient_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// REVU - only whitebox testing in redis package
// - freeze adding any more test code for client here
// TODO - move to blackbox redis/test package

package redis

import (
Expand Down
17 changes: 17 additions & 0 deletions connection_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
// REVU - whitebox testing of internal comps -- OK.

package redis

import (
"log"
"testing"
)

func TestStub(t *testing.T) {
/* feed the compiler */
}

/* --------------- KEEP THIS AS LAST FUNCTION -------------- */
func TestEnd_ct(t *testing.T) {
log.Println("-- connection test completed")
}
2 changes: 2 additions & 0 deletions error_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// REVU - whitebox testing of internal comps -- OK.

package redis

import (
Expand Down
2 changes: 2 additions & 0 deletions future_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// REVU - whitebox testing of internal comps -- OK.

package redis

import (
Expand Down
4 changes: 4 additions & 0 deletions synchclient_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// REVU - only whitebox testing in redis package
// - freeze adding any more test code for client here
// TODO - move to blackbox redis/test package

package redis

import (
Expand Down

0 comments on commit b29f0cf

Please sign in to comment.