コード例 #1
0
 def test_expand_paths_empty(self):
     self.assertEqual(expand_path(None), None)
     self.assertEqual(expand_path(''), '')
コード例 #2
0
 def test_expand_paths(self):
     self.assertEqual(expand_path('$BAR'), 'bar')
     self.assertEqual(expand_path('~/$BAR'), '/home/foo/bar')
     self.assertEqual(expand_path('~/$BARn'), '/home/foo/$BARn')
     self.assertEqual(expand_path('~/${BAR}n'), '/home/foo/barn')
コード例 #3
0
ファイル: conf_test.py プロジェクト: gimlids/LTPM
 def test_expand_paths(self):
     assert_equal(expand_path('$BAR'), 'bar')
     assert_equal(expand_path('~/$BAR'), '/home/foo/bar')
     assert_equal(expand_path('~/$BARn'), '/home/foo/$BARn')
     assert_equal(expand_path('~/${BAR}n'), '/home/foo/barn')
コード例 #4
0
ファイル: conf_test.py プロジェクト: gimlids/LTPM
 def test_expand_paths_empty(self):
     assert_equal(expand_path(None), None)
     assert_equal(expand_path(''), '')
コード例 #5
0
ファイル: test_conf.py プロジェクト: icio/mrjob
 def test_expand_paths_empty(self):
     self.assertEqual(expand_path(None), None)
     self.assertEqual(expand_path(''), '')
コード例 #6
0
ファイル: test_conf.py プロジェクト: nyccto/mrjob
 def test_expand_paths(self):
     self.assertEqual(expand_path("$BAR"), "bar")
     self.assertEqual(expand_path("~/$BAR"), "/home/foo/bar")
     self.assertEqual(expand_path("~/$BARn"), "/home/foo/$BARn")
     self.assertEqual(expand_path("~/${BAR}n"), "/home/foo/barn")
コード例 #7
0
 def test_expand_paths_empty(self):
     assert_equal(expand_path(None), None)
     assert_equal(expand_path(''), '')