示例#1
0
 def test_cw_client_opitons(self, boto3, config_options):
     cw = CWDataSource(config_options)
     cw._cw_client()
     boto3.session.Session.called_with(region_name='eu-west-1',
                                       profile_name='sandbox')
示例#2
0
 def test_cw_client_opitons(self, boto3, config_options):
     cw = CWDataSource(config_options)
     cw._cw_client()
     boto3.session.Session.called_with(region_name="eu-west-1", profile_name="sandbox")
示例#3
0
 def test_cw_client(self, boto3, config):
     cw = CWDataSource(config)
     cw._cw_client()
     boto3.session.Session.called_with(None, None)
示例#4
0
 def test_cw_client(self, boto3, config):
     cw = CWDataSource(config)
     cw._cw_client()
     boto3.session.Session.called_with(None, None)