Skip to content

Commit 91e2a3c

Browse files
committed
remove skip tests from the passed tests in query_test
1 parent 138491e commit 91e2a3c

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

tests/query_test.go

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,6 @@ func TestQueryWithAssociation(t *testing.T) {
308308
}
309309

310310
func TestFindInBatches(t *testing.T) {
311-
t.Skip()
312311
users := []User{
313312
*GetUser("find_in_batches", Config{}),
314313
*GetUser("find_in_batches", Config{}),
@@ -361,7 +360,6 @@ func TestFindInBatches(t *testing.T) {
361360
}
362361

363362
func TestFindInBatchesWithOffsetLimit(t *testing.T) {
364-
t.Skip()
365363
users := []User{
366364
*GetUser("find_in_batches_with_offset_limit", Config{}),
367365
*GetUser("find_in_batches_with_offset_limit", Config{}),
@@ -424,7 +422,6 @@ func TestFindInBatchesWithOffsetLimit(t *testing.T) {
424422
}
425423

426424
func TestFindInBatchesWithError(t *testing.T) {
427-
t.Skip()
428425
users := []User{
429426
*GetUser("find_in_batches_with_error", Config{}),
430427
*GetUser("find_in_batches_with_error", Config{}),
@@ -864,7 +861,6 @@ func TestSelect(t *testing.T) {
864861
}
865862

866863
func TestOmit(t *testing.T) {
867-
t.Skip()
868864
user := User{Name: "OmitUser1", Age: 20}
869865
DB.Save(&user)
870866

@@ -880,7 +876,6 @@ func TestOmit(t *testing.T) {
880876
}
881877

882878
func TestOmitWithAllFields(t *testing.T) {
883-
t.Skip()
884879
user := User{Name: "OmitUser1", Age: 20}
885880
DB.Save(&user)
886881

@@ -905,7 +900,6 @@ func TestOmitWithAllFields(t *testing.T) {
905900
}
906901

907902
func TestMapColumns(t *testing.T) {
908-
t.Skip()
909903
user := User{Name: "MapColumnsUser", Age: 12}
910904
DB.Save(&user)
911905

@@ -1305,7 +1299,6 @@ func TestSubQueryWithHaving(t *testing.T) {
13051299
}
13061300

13071301
func TestScanNullValue(t *testing.T) {
1308-
t.Skip()
13091302
user := GetUser("scan_null_value", Config{})
13101303
DB.Create(&user)
13111304

0 commit comments

Comments
 (0)