pgadmin4/web/pgadmin/tools/grant_wizard/tests/utils.py
2022-01-04 13:54:25 +05:30

16 lines
532 B
Python

##########################################################################
#
# pgAdmin 4 - PostgreSQL Tools
#
# Copyright (C) 2013 - 2022, The pgAdmin Development Team
# This software is released under the PostgreSQL Licence
#
##########################################################################
import os
import json
file_name = os.path.basename(__file__)
CURRENT_PATH = os.path.dirname(os.path.realpath(__file__))
with open(CURRENT_PATH + "/grant_wizard_test_data.json") as data_file:
test_cases = json.load(data_file)