summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/sean-/seed/init_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/sean-/seed/init_test.go')
-rw-r--r--vendor/github.com/sean-/seed/init_test.go26
1 files changed, 0 insertions, 26 deletions
diff --git a/vendor/github.com/sean-/seed/init_test.go b/vendor/github.com/sean-/seed/init_test.go
deleted file mode 100644
index 4736061f7..000000000
--- a/vendor/github.com/sean-/seed/init_test.go
+++ /dev/null
@@ -1,26 +0,0 @@
-package seed_test
-
-import (
- "testing"
-
- "github.com/sean-/seed"
-)
-
-func TestInit(t *testing.T) {
- secure, err := seed.Init()
- if !secure {
- t.Fatalf("Failed to securely seed: %v", err)
- }
-}
-
-func TestMustInit(t *testing.T) {
- seed.MustInit()
-
- if !seed.Seeded() {
- t.Fatalf("MustInit() failed to seed")
- }
-
- if !seed.Secure() {
- t.Fatalf("MustInit() failed to securely seed")
- }
-}