def test_if_clustering_plot_exists(self):
   _plot = tests.get_plot_location(u'clustering')
   self.assertTrue(os.path.exists(_plot))
   self.assertGreater(os.path.getsize(_plot), 0)
Beispiel #2
0
 def test_if_distance_plot_exists(self):
     _plot = tests.get_plot_location(u'distance')
     self.assertTrue(os.path.exists(_plot))
     self.assertGreater(os.path.getsize(_plot), 0)
Beispiel #3
0
 def test_if_pagerank_plot_exists(self):
     _plot = tests.get_plot_location(u'pagerank')
     self.assertTrue(os.path.exists(_plot))
     self.assertGreater(os.path.getsize(_plot), 0)
 def test_if_communities_plot_exists(self):
     _plot = tests.get_plot_location(u'communities')
     self.assertTrue(os.path.exists(_plot))
     self.assertGreater(os.path.getsize(_plot), 0)