mirror of
https://github.com/etcd-io/bbolt.git
synced 2025-07-10 20:49:45 +00:00
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")
|
|
}
|