mirror of
https://github.com/balzack/databag.git
synced 2025-02-12 11:39:17 +00:00
14 lines
207 B
Go
14 lines
207 B
Go
|
package databag
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
)
|
||
|
|
||
|
func TestAddArticle(t *testing.T) {
|
||
|
|
||
|
set, err := AddTestGroup("addaccount")
|
||
|
assert.NoError(t, err)
|
||
|
PrintMsg(set)
|
||
|
}
|