blob: 8f5fe20db733dca98edf6d69a21187f32ec6793d [file] [log] [blame]
package bt_gitstore
import (
"context"
"testing"
"github.com/stretchr/testify/require"
"go.skia.org/infra/go/gitstore/shared_tests"
"go.skia.org/infra/go/testutils/unittest"
)
func TestGitStore(t *testing.T) {
unittest.LargeTest(t)
conf := BTTestConfig()
require.NoError(t, InitBT(conf))
gs, err := New(context.Background(), conf, "fake.git")
require.NoError(t, err)
shared_tests.TestGitStore(t, gs)
}