tests: extend use_flake tests

This commit is contained in:
Jörg Thalheim 2020-12-25 18:29:06 +01:00
parent 47da3c88c7
commit 4aad17c4a1
No known key found for this signature in database
GPG key ID: 003F2096411B5F92

View file

@ -97,7 +97,10 @@ class IntegrationTest(unittest.TestCase):
text=True,
)
sys.stderr.write(out2.stderr)
# check if gcroot symlink has been created and is still valid
self.assertTrue(self.testenv.joinpath(".direnv/flake").is_dir())
self.assertIn("using cached dev shell", out2.stderr)
self.assertEqual(out2.returncode, 0)
def tearDown(self) -> None: