An assertion lib for the
to assert basic type.
int
float
str
dict
list
tuple
set
from the import expect
import theeasytype
expect.use(theeasytype)
expect(1).to.be.int
expect(1.1).to.be.float
expect("").to.be.str
expect({}).to.be.dict
expect([]).to.be.list
expect(()).to.be.tuple
expect(set()).to.be.set