mirror of
https://github.com/taigrr/shorturl
synced 2025-01-18 04:03:16 -08:00
14 lines
157 B
Go
14 lines
157 B
Go
package main
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestZeroConfig(t *testing.T) {
|
|
assert := assert.New(t)
|
|
|
|
cfg := Config{}
|
|
}
|