blob: 80653d57fb99bb39e2cf2c51913888d69c2efa1f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
package models
import (
"fmt"
"testing"
"github.com/lunny/xorm"
_ "github.com/mattn/go-sqlite3"
)
func init() {
var err error
orm, err = xorm.NewEngine("sqlite3", "./test.db")
if err != nil {
fmt.Println(err)
}
err = orm.Sync(&User{}, &Org{}, &Repo{})
if err != nil {
fmt.Println(err)
}
}
func TestCreateRepository(t *testing.T) {
user := User{Id: 1}
err := CreateUserRepository("test", &user, "test")
if err != nil {
t.Error(err)
}
}
|