We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 156e6b6 commit f948a55Copy full SHA for f948a55
1 file changed
Tests/test_PDB_PSEA.py
@@ -95,6 +95,16 @@ def test_psea_2HEC(self):
95
],
96
)
97
98
+ def test_run_psea_tempdir(self):
99
+ import tempfile
100
+
101
+ with tempfile.TemporaryDirectory() as tmpdir:
102
+ psae_run = run_psea("PDB/1A8O.pdb", outdir=tmpdir)
103
+ output_file = os.path.join(tmpdir, psae_run)
104
105
+ self.assertTrue(os.path.exists(output_file))
106
+ self.assertTrue(psae_run.endwith(".sea"))
107
108
109
class TestPSEA(unittest.TestCase):
110
def tearDown(self):
0 commit comments