shad-go/tools/testtool/commands/git_test.go
Fedor Korotkiy 6a83a4f1fc Task grading
2020-02-13 02:10:17 +03:00

13 lines
202 B
Go

package commands
import (
"testing"
"github.com/stretchr/testify/require"
)
func TestGit(t *testing.T) {
files, err := listChangedFiles(".")
require.NoError(t, err)
require.NotEmpty(t, files)
}