def test_find_root_cwd(self):
self.deps_helper()
with chdir('repo1'):
with GotRun(['--find-root']) as r:
expected = Path.cwd().resolve()
actual = Path(r.stdout.strip())
self.assertEqual(expected, actual)