29 lines
600 B
Go
29 lines
600 B
Go
|
// Copyright 2017 The Xorm Authors. All rights reserved.
|
||
|
// Use of this source code is governed by a BSD-style
|
||
|
// license that can be found in the LICENSE file.
|
||
|
|
||
|
package xorm
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
"time"
|
||
|
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
)
|
||
|
|
||
|
func TestInsertOne(t *testing.T) {
|
||
|
assert.NoError(t, prepareEngine())
|
||
|
|
||
|
type Test struct {
|
||
|
Id int64 `xorm:"autoincr pk"`
|
||
|
Msg string `xorm:"varchar(255)"`
|
||
|
Created time.Time `xorm:"created"`
|
||
|
}
|
||
|
|
||
|
assert.NoError(t, testEngine.Sync2(new(Test)))
|
||
|
|
||
|
data := Test{Msg: "hi"}
|
||
|
_, err := testEngine.InsertOne(data)
|
||
|
assert.NoError(t, err)
|
||
|
}
|