def test_default_download_dir(self): """ Test that the file is saved in the correct temporary directory by default """ filename = PDBParser.download_pdb_file("1fbb") self.assertTrue(filename.exists()) self.assertEqual(filename.parent, STRUCTURE_CACHE)
def test_pdb_parser_default_download_dir(): """Test that the file is saved in the correct temporary directory by default""" filename = PDBParser.download_pdb_file("1fbb") assert filename.exists() assert filename.parent == STRUCTURE_CACHE