Changeset - 5adc4ad9ce77
[Not reviewed]
kallithea/tests/functional/test_admin_auth_settings.py
Show inline comments
 
@@ -2,7 +2,7 @@ from kallithea.tests import *
 
from kallithea.model.db import Setting
 

	
 

	
 
class TestAuthSettingsController(TestController):
 
class TestAuthSettingsController(TestControllerPytest):
 
    def _enable_plugins(self, plugins_list):
 
        test_url = url(controller='admin/auth_settings',
 
                       action='auth_settings')
kallithea/tests/functional/test_admin_defaults.py
Show inline comments
 
@@ -2,7 +2,7 @@ from kallithea.tests import *
 
from kallithea.model.db import Setting
 

	
 

	
 
class TestDefaultsController(TestController):
 
class TestDefaultsController(TestControllerPytest):
 

	
 
    def test_index(self):
 
        self.log_user()
kallithea/tests/functional/test_admin_permissions.py
Show inline comments
 
from kallithea.model.db import User, UserIpMap
 
from kallithea.tests import *
 

	
 
class TestAdminPermissionsController(TestController):
 
class TestAdminPermissionsController(TestControllerPytest):
 

	
 
    def test_index(self):
 
        self.log_user()
kallithea/tests/functional/test_admin_repo_groups.py
Show inline comments
 
from kallithea.tests import *
 

	
 
class TestRepoGroupsController(TestController):
 
class TestRepoGroupsController(TestControllerPytest):
 
    pass
kallithea/tests/functional/test_admin_settings.py
Show inline comments
 
@@ -7,7 +7,7 @@ from kallithea.tests.fixture import Fixt
 
fixture = Fixture()
 

	
 

	
 
class TestAdminSettingsController(TestController):
 
class TestAdminSettingsController(TestControllerPytest):
 

	
 
    def test_index_main(self):
 
        self.log_user()
kallithea/tests/functional/test_admin_user_groups.py
Show inline comments
 
@@ -6,7 +6,7 @@ from kallithea.model.meta import Session
 
TEST_USER_GROUP = u'admins_test'
 

	
 

	
 
class TestAdminUsersGroupsController(TestController):
 
class TestAdminUsersGroupsController(TestControllerPytest):
 

	
 
    def test_index(self):
 
        self.log_user()
kallithea/tests/functional/test_admin_users.py
Show inline comments
 
@@ -532,7 +532,7 @@ class TestAdminUsersController(TestContr
 
#            u._get_user_or_raise_if_default(User.get_default_user().user_id)
 

	
 

	
 
class TestAdminUsersControllerForDefaultUser(TestController):
 
class TestAdminUsersControllerForDefaultUser(TestControllerPytest):
 
    """
 
    Edit actions on the default user are not allowed.
 
    Validate that they throw a 404 exception.
kallithea/tests/functional/test_branches.py
Show inline comments
 
from kallithea.tests import *
 

	
 

	
 
class TestBranchesController(TestController):
 
class TestBranchesController(TestControllerPytest):
 

	
 
    def test_index_hg(self):
 
        self.log_user()
kallithea/tests/functional/test_changelog.py
Show inline comments
 
from kallithea.tests import *
 

	
 

	
 
class TestChangelogController(TestController):
 
class TestChangelogController(TestControllerPytest):
 

	
 
    def test_index_hg(self):
 
        self.log_user()
kallithea/tests/functional/test_changeset.py
Show inline comments
 
from kallithea.tests import *
 

	
 
class TestChangesetController(TestController):
 
class TestChangesetController(TestControllerPytest):
 

	
 
    def test_index(self):
 
        response = self.app.get(url(controller='changeset', action='index',
kallithea/tests/functional/test_compare_local.py
Show inline comments
 
# -*- coding: utf-8 -*-
 
from kallithea.tests import *
 

	
 
class TestCompareController(TestController):
 
class TestCompareController(TestControllerPytest):
 

	
 
    def test_compare_tag_hg(self):
 
        self.log_user()
kallithea/tests/functional/test_feed.py
Show inline comments
 
from kallithea.tests import *
 

	
 
class TestFeedController(TestController):
 
class TestFeedController(TestControllerPytest):
 

	
 
    def test_rss(self):
 
        self.log_user()
kallithea/tests/functional/test_followers.py
Show inline comments
 
from kallithea.tests import *
 

	
 

	
 
class TestFollowersController(TestController):
 
class TestFollowersController(TestControllerPytest):
 

	
 
    def test_index_hg(self):
 
        self.log_user()
kallithea/tests/functional/test_home.py
Show inline comments
 
@@ -9,7 +9,7 @@ from kallithea.model.repo_group import R
 
fixture = Fixture()
 

	
 

	
 
class TestHomeController(TestController):
 
class TestHomeController(TestControllerPytest):
 

	
 
    def test_index(self):
 
        self.log_user()
kallithea/tests/functional/test_journal.py
Show inline comments
 
@@ -2,7 +2,7 @@ from kallithea.tests import *
 
import datetime
 

	
 

	
 
class TestJournalController(TestController):
 
class TestJournalController(TestControllerPytest):
 

	
 
    def test_index(self):
 
        self.log_user()
kallithea/tests/functional/test_pullrequests.py
Show inline comments
 
@@ -8,7 +8,7 @@ from kallithea.controllers.pullrequests 
 

	
 
fixture = Fixture()
 

	
 
class TestPullrequestsController(TestController):
 
class TestPullrequestsController(TestControllerPytest):
 

	
 
    def test_index(self):
 
        self.log_user()
kallithea/tests/functional/test_repo_groups.py
Show inline comments
 
from kallithea.tests import *
 

	
 

	
 
class TestRepoGroupsController(TestController):
 
class TestRepoGroupsController(TestControllerPytest):
 

	
 
    def test_index(self):
 
        self.log_user()
kallithea/tests/functional/test_summary.py
Show inline comments
 
@@ -22,7 +22,7 @@ from kallithea.model.scm import ScmModel
 
fixture = Fixture()
 

	
 

	
 
class TestSummaryController(TestController):
 
class TestSummaryController(TestControllerPytest):
 

	
 
    def test_index(self):
 
        self.log_user()
kallithea/tests/functional/test_tags.py
Show inline comments
 
from kallithea.tests import *
 

	
 

	
 
class TestTagsController(TestController):
 
class TestTagsController(TestControllerPytest):
 

	
 
    def test_index_hg(self):
 
        self.log_user()
0 comments (0 inline, 0 general)