def test_echo(self): text = 'hello' container = Mock() admin = Admin(container) self.assertEqual(admin.echo(text), text)
def test_echo(self): text = 'hello' admin = Admin() self.assertEqual(admin.echo(text), text)