mirror of https://github.com/etcd-io/bbolt.git
16 lines
293 B
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")
|
|
}
|