(t *testing.T)
| 75 | } |
| 76 | |
| 77 | func TestLFSDefaultSimple(t *testing.T) { |
| 78 | cfg := NewFrom(Values{ |
| 79 | Git: map[string][]string{ |
| 80 | "remote.lfsdefault": []string{"a"}, |
| 81 | }, |
| 82 | }) |
| 83 | |
| 84 | assert.Equal(t, "a", cfg.Remote()) |
| 85 | assert.Equal(t, "a", cfg.PushRemote()) |
| 86 | } |
| 87 | |
| 88 | func TestLFSDefaultBranch(t *testing.T) { |
| 89 | cfg := NewFrom(Values{ |
nothing calls this directly
no test coverage detected