def test_constraint(): tc = TableCreator('awesome') tc.column('char', 'fname') const = peewee.SQL('fname not null') tc.add_constraint(const) assert tc.model._meta.constraints == [const]