A testing library for python with powerful and flexible assertions. Sure is heavily inspired by should.js
user@machine:~$ [sudo] pip install sure
Available in the website or under the
docs
directory.
You can also build the documentation locally using sphinx:
make docs
import sure
(4).should.be.equal(2 + 2)
(7.5).should.eql(3.5 + 4)
(3).shouldnt.be.equal(5)
{'foo': 'bar'}.should.equal({'foo': 'bar'})
{'foo': 'bar'}.should.have.key('foo').which.should.equal('bar')
"Awesome ASSERTIONS".lower().split().should.equal(['awesome', 'assertions'])