bbolt/transaction_test.go

16 lines
293 B
Go

package bolt
import (
"testing"
)
// Ensure that a bucket can be created and retrieved.
func TestTransactionCreateBucket(t *testing.T) {
t.Skip("pending")
}
// Ensure that an existing bucket cannot be created.
func TestTransactionCreateExistingBucket(t *testing.T) {
t.Skip("pending")
}