コード例 #1
0
 def test_get_all(self):
     '''
     Test if it return a list of all available services.
     '''
     with patch.object(os, 'listdir',
                       MagicMock(return_value=['/etc/service'])):
         self.assertListEqual(s6.get_all(), ['/etc/service'])
コード例 #2
0
ファイル: test_s6.py プロジェクト: mamh-mixed/saltstack-salt
 def test_get_all(self):
     """
     Test if it return a list of all available services.
     """
     with patch.object(os, "listdir",
                       MagicMock(return_value=["/etc/service"])):
         self.assertListEqual(s6.get_all(), ["/etc/service"])
コード例 #3
0
ファイル: s6_test.py プロジェクト: HowardMei/saltstack
 def test_get_all(self):
     '''
     Test if it return a list of all available services.
     '''
     with patch.object(os, 'listdir',
                       MagicMock(return_value=['/etc/service'])):
         self.assertListEqual(s6.get_all(), ['/etc/service'])