コード例 #1
0
ファイル: test_datasets.py プロジェクト: Ayaro/openml-python
 def test__get_dataset_features(self):
     # Only a smoke check
     features = _get_dataset_features(2)
     self.assertIsInstance(features, dict)
コード例 #2
0
 def test__get_dataset_features(self):
     features = _get_dataset_features(self.workdir, 2)
     self.assertIsInstance(features, dict)
     features_xml_path = os.path.join(self.workdir, 'features.xml')
     self.assertTrue(os.path.exists(features_xml_path))
コード例 #3
0
 def test__get_dataset_features(self):
     features = _get_dataset_features(self.workdir, 2)
     self.assertIsInstance(features, dict)
     features_xml_path = os.path.join(self.workdir, 'features.xml')
     self.assertTrue(os.path.exists(features_xml_path))