mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-14 09:23:51 -06:00
- Test framework support API testing with multiple server for this we need to modify test_config.json(for user it’s test_config.json.in) and test_advanced_config.json(for user it’s test_advanced_config.json.in). Server details of PG and PPAS are included in both .in files. - Removed the logic of logging in the test client on each test scenario(As per Khushboo's comment in previous email). We need this logic in test cases under ‘browser/tests/’ as for test scenarios like change password and invalid login test cases as test client should be logged out first. So, as per this the code is slightly modified in ‘browser/tests/’.
16 lines
425 B
Python
16 lines
425 B
Python
# #################################################################
|
|
#
|
|
# pgAdmin 4 - PostgreSQL Tools
|
|
#
|
|
# Copyright (C) 2013 - 2016, The pgAdmin Development Team
|
|
# This software is released under the PostgreSQL Licence
|
|
#
|
|
# ##################################################################
|
|
|
|
from pgadmin.utils.route import BaseTestGenerator
|
|
|
|
|
|
class SGGenerateTestCase(BaseTestGenerator):
|
|
def runTest(self):
|
|
return
|