def test_cluster_per_block_csv_download(self):
        self.tests.pop()
        self.logger.info("test_cluster_per_block_csv_download is running" +
                         " " + "Total :" + " " + str(self.total_tests) + " " +
                         "Remaining :" + " " + str(len(self.tests) - 1))

        block = ClusterPerBlockCsvDownload(self.driver, self.year, self.month)
        result = block.check_csv_download()
        if result == 0:
            print("Cluster per block csv report download is working")
            print("on selection of each district and block")
            print("The footer value of no of schools and no of students are")
            print("equals to downloaded file")
        else:
            raise self.failureException(
                "Cluster per block csv report download is working")

        self.logger.info("test_cluster_per_block_csv_download is completed...")