grim/hgkeeper

A few more typoes in the docs
v1.0.0
22 months ago, Gary Kramlich
b1bb1f180fee
A few more typoes in the docs
package hg
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestFindHgrcsForRepoSimple(t *testing.T) {
actual := findHgrcsForRepo("grim/hgkeeper")
expected := []string{
"config/hgrc",
"config/grim/hgrc",
"config/grim/hgkeeper/hgrc",
}
assert.Equal(t, expected, actual)
}
func TestFindHgrcsForRepoEmpty(t *testing.T) {
actual := findHgrcsForRepo("")
expected := []string{
"config/hgrc",
}
assert.Equal(t, expected, actual)
}
func TestFindHgrcsForRepoDot(t *testing.T) {
actual := findHgrcsForRepo(".")
expected := []string{
"config/hgrc",
}
assert.Equal(t, expected, actual)
}
func TestFindHgrcsForRepoAbsolute(t *testing.T) {
actual := findHgrcsForRepo("/grim/testing/abc123")
expected := []string{
"config/hgrc",
"config/grim/hgrc",
"config/grim/testing/hgrc",
"config/grim/testing/abc123/hgrc",
}
assert.Equal(t, expected, actual)
}