Example #1
0
    def testPage50Increment50(self):
        orgs = Organization.getClubsByPage(1);

        self.assertTrue(len(orgs) == 3);
        self.assertTrue(orgs[0].name == 'Test 1');
        self.assertTrue(orgs[2].name == 'Test 3');
Example #2
0
    def testPageTwoIncrementOne(self):
        orgs = Organization.getClubsByPage(2, 1);

        self.assertTrue(len(orgs) == 1);
        self.assertTrue(orgs[0].name == 'Test 2');