summary refs log tree commit diff stats
path: root/cache_test.go
diff options
context:
space:
mode:
authorBen Morrison <ben@gbmor.dev>2019-06-05 15:36:23 -0400
committerBen Morrison <ben@gbmor.dev>2019-06-05 15:36:23 -0400
commitfd43c61bd128ad77b22db0537a9a4eb58490b0b5 (patch)
tree4c5fa7b33fadbf7c3e14e69b7d68ce280bc3810a /cache_test.go
parent4658fe82be3e9d95e93fa5c7c7ca64a15cf2f1a1 (diff)
downloadgetwtxt-fd43c61bd128ad77b22db0537a9a4eb58490b0b5.tar.gz
moved bulk of code to its own package to clean up source tree
Diffstat (limited to 'cache_test.go')
-rw-r--r--cache_test.go32
1 files changed, 0 insertions, 32 deletions
diff --git a/cache_test.go b/cache_test.go
deleted file mode 100644
index 00f0ddf..0000000
--- a/cache_test.go
+++ /dev/null
@@ -1,32 +0,0 @@
-package main
-
-import (
-	"testing"
-)
-
-func Test_refreshCache(t *testing.T) {
-	initTestConf()
-	confObj.Mu.RLock()
-	prevtime := confObj.LastCache
-	confObj.Mu.RUnlock()
-
-	t.Run("Cache Time Check", func(t *testing.T) {
-		refreshCache()
-		confObj.Mu.RLock()
-		newtime := confObj.LastCache
-		confObj.Mu.RUnlock()
-
-		if !newtime.After(prevtime) || newtime == prevtime {
-			t.Errorf("Cache time did not update, check refreshCache() logic\n")
-		}
-	})
-}
-
-func Benchmark_refreshCache(b *testing.B) {
-	initTestConf()
-	b.ResetTimer()
-
-	for i := 0; i < b.N; i++ {
-		refreshCache()
-	}
-}