Example #1
0
 def test_sentry_public_dsn_with_https(self, get_public_dsn):
     sentry_public_dsn('https')
     get_public_dsn.assert_called_once_with('https')
Example #2
0
 def test_sentry_public_dsn_with_https(self, get_public_dsn):
     sentry_public_dsn('https')
     get_public_dsn.assert_called_once_with('https')
Example #3
0
 def test_sentry_public_dsn_no_args(self, get_public_dsn):
     sentry_public_dsn()
     get_public_dsn.assert_called_once_with(None)
Example #4
0
 def test_sentry_public_dsn_no_args(self, get_public_dsn):
     sentry_public_dsn()
     get_public_dsn.assert_called_once_with(None)