mirror of https://github.com/go-gorm/gorm.git
Fix the HasTable test, for real.
This commit is contained in:
parent
43be73504f
commit
bc616fafbf
|
@ -133,14 +133,14 @@ func TestHasTable(t *testing.T) {
|
||||||
Id int
|
Id int
|
||||||
Stuff string
|
Stuff string
|
||||||
}
|
}
|
||||||
db.DropTable(&Foo{})
|
DB.DropTable(&Foo{})
|
||||||
if table_ok := db.HasTable(&Foo{}); table_ok {
|
if table_ok := DB.HasTable(&Foo{}); table_ok {
|
||||||
t.Errorf("Table should not exist, but does")
|
t.Errorf("Table should not exist, but does")
|
||||||
}
|
}
|
||||||
if err := db.CreateTable(&Foo{}).Error; err != nil {
|
if err := DB.CreateTable(&Foo{}).Error; err != nil {
|
||||||
t.Errorf("Table should be created")
|
t.Errorf("Table should be created")
|
||||||
}
|
}
|
||||||
if table_ok := db.HasTable(&Foo{}); !table_ok {
|
if table_ok := DB.HasTable(&Foo{}); !table_ok {
|
||||||
t.Errorf("Table should exist, but HasTable informs it does not")
|
t.Errorf("Table should exist, but HasTable informs it does not")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue