mirror of
https://github.com/gofiber/storage.git
synced 2025-11-03 10:50:58 +08:00
add TestMain for a few storages and update benchmark workflow
This commit is contained in:
@@ -1,12 +1,25 @@
|
||||
package bbolt
|
||||
|
||||
import (
|
||||
"os"
|
||||
"testing"
|
||||
|
||||
"github.com/stretchr/testify/require"
|
||||
)
|
||||
|
||||
var testStore = New()
|
||||
var testStore *Storage
|
||||
|
||||
func TestMain(m *testing.M) {
|
||||
testStore = New(Config{
|
||||
Bucket: "fiber-bucket",
|
||||
Reset: true,
|
||||
})
|
||||
|
||||
code := m.Run()
|
||||
|
||||
_ = testStore.Close()
|
||||
os.Exit(code)
|
||||
}
|
||||
|
||||
func Test_Bbolt_Set(t *testing.T) {
|
||||
var (
|
||||
|
||||
Reference in New Issue
Block a user