mirror of
https://github.com/fumiama/go-nd-portal.git
synced 2026-06-27 06:30:27 +08:00
init
This commit is contained in:
15
base64_test.go
Normal file
15
base64_test.go
Normal file
@@ -0,0 +1,15 @@
|
||||
package gondportal
|
||||
|
||||
import (
|
||||
"encoding/base64"
|
||||
"strings"
|
||||
"testing"
|
||||
|
||||
"github.com/stretchr/testify/assert"
|
||||
)
|
||||
|
||||
func TestBase64(t *testing.T) {
|
||||
buf := strings.Builder{}
|
||||
base64.NewEncoder(Base64Encoding, &buf).Write([]byte("123456"))
|
||||
assert.Equal(t, "9F2z0JHI", buf.String())
|
||||
}
|
||||
Reference in New Issue
Block a user