mirror of
https://github.com/buger/goreplay.git
synced 2024-04-21 12:32:02 +00:00
change package from `main -> goreplay` this will allow importing `goreplay` as a package
15 lines
180 B
Go
15 lines
180 B
Go
package goreplay
|
|
|
|
import (
|
|
"encoding/json"
|
|
"testing"
|
|
)
|
|
|
|
func TestAppSettings(t *testing.T) {
|
|
a := AppSettings{}
|
|
_, err := json.Marshal(&a)
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
}
|