git-lfs/commands/push_test.go

14 lines
188 B
Go
Raw Normal View History

package commands
import (
"testing"
)
func TestPushWithEmptyQueue(t *testing.T) {
repo := NewRepository(t, "empty")
defer repo.Test()
cmd := repo.Command("push")
cmd.Output = ""
}