| Index: go/src/infra/libs/git/repo/repo_test.go
|
| diff --git a/go/src/infra/libs/git/repo/repo_test.go b/go/src/infra/libs/git/repo/repo_test.go
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..b8c18a6f8753feb697279b33fbb297e503ba9730
|
| --- /dev/null
|
| +++ b/go/src/infra/libs/git/repo/repo_test.go
|
| @@ -0,0 +1,23 @@
|
| +// Copyright 2014 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +package repo
|
| +
|
| +import (
|
| + "testing"
|
| +
|
| + "github.com/stretchr/testify/assert"
|
| +
|
| + "infra/libs/infra_util"
|
| +)
|
| +
|
| +func TestRepoRunCommands(t *testing.T) {
|
| + t.Parallel()
|
| + is := assert.New(t)
|
| +
|
| + infra_util.WithTempDir("", "TestRepoRunCommands", func(dir string) {
|
| + r := NewRepo(dir)
|
| + is.NotNil(r)
|
| + })
|
| +}
|
|
|