additional testing

pull/508/head
hunterlong 2020-04-19 01:12:41 -07:00
parent 7355105c68
commit b16cafc6e0
1 changed files with 0 additions and 19 deletions

View File

@ -16,25 +16,6 @@ func TestCreateLog(t *testing.T) {
assert.Nil(t, err)
}
func TestToFields(t *testing.T) {
example := struct {
Id int64
Str string
}{
Id: 1,
Str: "example input",
}
fields := ToFields(example)
assert.Equal(t, "", fields)
}
func TestGetLastLine(t *testing.T) {
last := GetLastLine()
require.NotNil(t, last)
assert.Equal(t, "", last.lineAsString())
}
func TestReplaceValue(t *testing.T) {
assert.Equal(t, true, replaceVal(true))
assert.Equal(t, 42, replaceVal(42))