@@ -47,6 +47,7 @@ import (
4747)
4848
4949func TestHasManyAssociation (t * testing.T ) {
50+ t .Skip ()
5051 user := * GetUser ("hasmany" , Config {Pets : 2 })
5152
5253 if err := DB .Create (& user ).Error ; err != nil {
@@ -159,6 +160,7 @@ func TestHasManyAssociation(t *testing.T) {
159160}
160161
161162func TestSingleTableHasManyAssociation (t * testing.T ) {
163+ t .Skip ()
162164 user := * GetUser ("hasmany" , Config {Team : 2 })
163165
164166 if err := DB .Create (& user ).Error ; err != nil {
@@ -254,6 +256,7 @@ func TestSingleTableHasManyAssociation(t *testing.T) {
254256}
255257
256258func TestHasManyAssociationForSlice (t * testing.T ) {
259+ t .Skip ()
257260 users := []User {
258261 * GetUser ("slice-hasmany-1" , Config {Pets : 2 }),
259262 * GetUser ("slice-hasmany-2" , Config {Pets : 0 }),
@@ -308,6 +311,7 @@ func TestHasManyAssociationForSlice(t *testing.T) {
308311}
309312
310313func TestSingleTableHasManyAssociationForSlice (t * testing.T ) {
314+ t .Skip ()
311315 users := []User {
312316 * GetUser ("slice-hasmany-1" , Config {Team : 2 }),
313317 * GetUser ("slice-hasmany-2" , Config {Team : 0 }),
@@ -364,6 +368,7 @@ func TestSingleTableHasManyAssociationForSlice(t *testing.T) {
364368}
365369
366370func TestPolymorphicHasManyAssociation (t * testing.T ) {
371+ t .Skip ()
367372 user := * GetUser ("hasmany" , Config {Toys : 2 })
368373
369374 if err := DB .Create (& user ).Error ; err != nil {
@@ -459,6 +464,7 @@ func TestPolymorphicHasManyAssociation(t *testing.T) {
459464}
460465
461466func TestPolymorphicHasManyAssociationForSlice (t * testing.T ) {
467+ t .Skip ()
462468 users := []User {
463469 * GetUser ("slice-hasmany-1" , Config {Toys : 2 }),
464470 * GetUser ("slice-hasmany-2" , Config {Toys : 0 , Tools : 2 }),
@@ -595,6 +601,7 @@ func TestHasManyAssociationUnscoped(t *testing.T) {
595601}
596602
597603func TestHasManyAssociationReplaceWithNonValidValue (t * testing.T ) {
604+ t .Skip ()
598605 user := User {Name : "jinzhu" , Languages : []Language {{Name : "EN" }}}
599606
600607 if err := DB .Create (& user ).Error ; err != nil {
0 commit comments