コード例 #1
0
ファイル: test_config_parsing.py プロジェクト: CWSL/climate
 def test_does_not_contain_unary_metric(self):
     ret = parser._contains_unary_metrics(self.binary_conf['metrics'])
     self.assertFalse(ret)
コード例 #2
0
 def test_does_not_contain_unary_metric(self):
     ret = parser._contains_unary_metrics(self.binary_conf['metrics'])
     self.assertFalse(ret)
コード例 #3
0
ファイル: test_config_parsing.py プロジェクト: CWSL/climate
 def test_contains_unary_metric(self):
     ret = parser._contains_unary_metrics(self.unary_conf['metrics'])
     self.assertTrue(ret)
コード例 #4
0
 def test_contains_unary_metric(self):
     ret = parser._contains_unary_metrics(self.unary_conf['metrics'])
     self.assertTrue(ret)