def client(self):
        """ Fixture returning Flask testing client.

        Returns:
            testing_client (Flask):
        """
        testing_client = app.test_client()
        ctx = app.app_context()
        ctx.push()
        yield testing_client
        ctx.pop()
 def client(self):
     testing_client = app.test_client()
     ctx = app.app_context()
     ctx.push()
     yield testing_client
     ctx.pop()