mirror of https://github.com/dmarkham/enumer.git
15 lines
259 B
Go
15 lines
259 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func TestTransform(t *testing.T) {
|
||
|
result := transform("CamelCaseStringValue", ".")
|
||
|
|
||
|
const expected = "camel.case.string.value"
|
||
|
if result != expected {
|
||
|
t.Errorf("\ngot: %s\n====\nexpected: %s", result, expected)
|
||
|
}
|
||
|
}
|