##// END OF EJS Templates
Removed skip_on_win32 should dependencies should be stubbed
Jorgen Stenarson -
Show More
@@ -35,7 +35,7 b' except ImportError:'
35 #Add entries that needs to be stubbed by the testing code
35 #Add entries that needs to be stubbed by the testing code
36 (wreg.OpenKey, wreg.QueryValueEx,) = (None, None)
36 (wreg.OpenKey, wreg.QueryValueEx,) = (None, None)
37
37
38 skip_if_not_win32 = skipif(sys.platform!='win32',"This test only runs under Windows")
38 #skip_if_not_win32 = skipif(sys.platform!='win32',"This test only runs under Windows")
39
39
40 def setup_environment():
40 def setup_environment():
41 global oldstuff, platformstuff
41 global oldstuff, platformstuff
@@ -139,7 +139,7 b' def test_get_home_dir_8():'
139 assert home_dir==abspath(join(".", "home_test_dir"))
139 assert home_dir==abspath(join(".", "home_test_dir"))
140
140
141 # Should we stub wreg fully so we can run the test on all platforms?
141 # Should we stub wreg fully so we can run the test on all platforms?
142 @skip_if_not_win32
142 #@skip_if_not_win32
143 @with_enivronment
143 @with_enivronment
144 def test_get_home_dir_9():
144 def test_get_home_dir_9():
145 """Testcase $HOME is not set, os=='nt'
145 """Testcase $HOME is not set, os=='nt'
General Comments 0
You need to be logged in to leave comments. Login now