Fix the HasTable test, for real.

This commit is contained in:
Robert B Gordon 2014-08-29 09:53:12 -05:00
parent 43be73504f
commit bc616fafbf
1 changed files with 4 additions and 4 deletions

View File

@ -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")
} }
} }