Exemple #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')
Exemple #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")
Exemple #3
0
 def test_cw_client(self, boto3, config):
     cw = CWDataSource(config)
     cw._cw_client()
     boto3.session.Session.called_with(None, None)
Exemple #4
0
 def test_cw_client(self, boto3, config):
     cw = CWDataSource(config)
     cw._cw_client()
     boto3.session.Session.called_with(None, None)