public function throttle()
 {
     $fixture = new RateLimiting(self::RATE);
     $fixture->throttle(100);
     $this->assertEquals(new Rate(self::RATE - 100, Per::$SECOND), $fixture->rate());
 }