예제 #1
0
파일: test_win_ip.py 프로젝트: vindir/salt
 def test_get_default_gateway(self):
     '''
     Test if it set DNS source to DHCP on Windows.
     '''
     mock_cmd = MagicMock(return_value=ETHERNET_CONFIG)
     with patch.dict(win_ip.__salt__, {'cmd.run': mock_cmd}):
         self.assertEqual(win_ip.get_default_gateway(), '1.2.3.1')
예제 #2
0
파일: win_ip_test.py 프로젝트: bryson/salt
 def test_get_default_gateway(self):
     """
     Test if it set DNS source to DHCP on Windows.
     """
     mock_cmd = MagicMock(return_value=ETHERNET_CONFIG)
     with patch.dict(win_ip.__salt__, {"cmd.run": mock_cmd}):
         self.assertEqual(win_ip.get_default_gateway(), "1.2.3.1")