Beispiel #1
0
 def test_get_rate_raises_error_if_scope_is_missing(self):
     throttle = SimpleRateThrottle()
     with pytest.raises(ImproperlyConfigured):
         throttle.scope = None
         throttle.get_rate()
 def test_get_rate_raises_error_if_scope_is_missing(self):
     throttle = SimpleRateThrottle()
     with pytest.raises(ImproperlyConfigured):
         throttle.scope = None
         throttle.get_rate()