13 lines
308 B
Python
13 lines
308 B
Python
|
|
||
|
import unittest
|
||
|
|
||
|
import testlib
|
||
|
import id_allocation
|
||
|
|
||
|
|
||
|
class SlaveTest(testlib.RouterMixin, unittest.TestCase):
|
||
|
def test_slave_allocates_id(self):
|
||
|
context = self.router.local()
|
||
|
id_ = context.call(id_allocation.allocate_an_id)
|
||
|
assert id_ == (self.router.id_allocator.next_id - 1)
|