equal
deleted
inserted
replaced
27 self.RELATIONS_MAP = {} |
27 self.RELATIONS_MAP = {} |
28 |
28 |
29 class MockCursor: |
29 class MockCursor: |
30 def __init__(self): |
30 def __init__(self): |
31 self.executed = [] |
31 self.executed = [] |
32 def execute(self, rql, args=None, cachekey=None): |
32 def execute(self, rql, args=None, build_descr=False): |
33 args = args or {} |
33 args = args or {} |
34 self.executed.append(rql % args) |
34 self.executed.append(rql % args) |
35 |
35 |
36 |
36 |
37 class FakeController(ViewController): |
37 class FakeController(ViewController): |