rinpy is BDD Test Framework for python. inspired mocha.
Currently Under Development.
from rin import describe, it
@describe("A")
class TestA:
@it("hello return Hello")
def test(self):
assert "Hello" == hello()
@it("world return World")
def it(self):
assert "World" == world()