aboutsummaryrefslogtreecommitdiff
path: root/cmd/bolt/keys_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/bolt/keys_test.go')
-rw-r--r--cmd/bolt/keys_test.go42
1 files changed, 0 insertions, 42 deletions
diff --git a/cmd/bolt/keys_test.go b/cmd/bolt/keys_test.go
deleted file mode 100644
index 0cc4e0c..0000000
--- a/cmd/bolt/keys_test.go
+++ /dev/null
@@ -1,42 +0,0 @@
-package main_test
-
-import (
- "testing"
-
- "github.com/boltdb/bolt"
- . "github.com/boltdb/bolt/cmd/bolt"
-)
-
-// Ensure that a list of keys can be retrieved for a given bucket.
-func TestKeys(t *testing.T) {
- SetTestMode(true)
- open(func(db *bolt.DB, path string) {
- db.Update(func(tx *bolt.Tx) error {
- tx.CreateBucket([]byte("widgets"))
- tx.Bucket([]byte("widgets")).Put([]byte("0002"), []byte(""))
- tx.Bucket([]byte("widgets")).Put([]byte("0001"), []byte(""))
- tx.Bucket([]byte("widgets")).Put([]byte("0003"), []byte(""))
- return nil
- })
- db.Close()
- output := run("keys", path, "widgets")
- equals(t, "0001\n0002\n0003", output)
- })
-}
-
-// Ensure that an error is reported if the database is not found.
-func TestKeysDBNotFound(t *testing.T) {
- SetTestMode(true)
- output := run("keys", "no/such/db", "widgets")
- equals(t, "stat no/such/db: no such file or directory", output)
-}
-
-// Ensure that an error is reported if the bucket is not found.
-func TestKeysBucketNotFound(t *testing.T) {
- SetTestMode(true)
- open(func(db *bolt.DB, path string) {
- db.Close()
- output := run("keys", path, "widgets")
- equals(t, "bucket not found: widgets", output)
- })
-}