aboutsummaryrefslogtreecommitdiff
path: root/transaction_test.go
blob: e3d2e8762c6870e96b803df9c4f5b8ce17263ab5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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")
}