def test_get_current(self): """ Tests the method which let us get the current directory. """ expected = getcwd() actual = Directory.get_current() self.assertEqual(expected, actual)
def test_get_current_with_end_sep(self): """ Tests the method which let us get the current directory for the case that we want to have the directory separator at the end. """ expected = getcwd() + directory_separator actual = Directory.get_current(with_end_sep=True) self.assertEqual(expected, actual)