コード例 #1
0
ファイル: test_loading.py プロジェクト: duthils/greglink
    def test_path_to_filepath_no_end_slash(self, root_path):
        root_path.return_value = '/root'

        expected = "/root/foo/bar/"
        result = loading.path_to_filepath("foo/bar/")

        self.assertEquals(result, expected)
コード例 #2
0
ファイル: test_loading.py プロジェクト: duthils/greglink
    def test_path_to_filepath_with_beginning_slash(self, root_path):
        root_path.return_value = '/root'

        expected = "/root/foo/bar.md"
        result = loading.path_to_filepath("/foo/bar.md")

        self.assertEquals(result, expected)