From 509e93dff4cedf88d91ba2c99385da0b4e41eb6a Mon Sep 17 00:00:00 2001 From: Ben Johnson Date: Sun, 9 Feb 2014 15:52:19 -0700 Subject: Add freelist. --- transaction_test.go | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'transaction_test.go') diff --git a/transaction_test.go b/transaction_test.go index 55e8bde..6041f2f 100644 --- a/transaction_test.go +++ b/transaction_test.go @@ -6,6 +6,11 @@ import ( "github.com/stretchr/testify/assert" ) +// Ensure that the database can retrieve a list of buckets. +func TestTransactionBuckets(t *testing.T) { + t.Skip("pending") // TODO(benbjohnson) +} + // Ensure that a Transaction can retrieve a bucket. func TestTransactionBucketMissing(t *testing.T) { withOpenDB(func(db *DB, path string) { @@ -19,7 +24,7 @@ func TestTransactionBucketMissing(t *testing.T) { } // Ensure that a Transaction retrieving a non-existent key returns nil. -func TestTransactionGetMising(t *testing.T) { +func TestTransactionGetMissing(t *testing.T) { withOpenDB(func(db *DB, path string) { db.CreateBucket("widgets") db.Put("widgets", []byte("foo"), []byte("bar")) -- cgit v1.2.3