git-lfs/commands/push_test.go
2014-06-05 17:13:42 -06:00

14 lines
188 B
Go

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