mirror of
https://github.com/romdo/go-conver.git
synced 2026-02-19 00:06:39 +00:00
12 lines
151 B
Go
12 lines
151 B
Go
package main
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func Test_errDone(t *testing.T) {
|
|
assert.EqualError(t, errDone, "done")
|
|
}
|