2020-08-20 14:04:24 +05:30
|
|
|
##########################################################################
|
|
|
|
|
#
|
|
|
|
|
# pgAdmin 4 - PostgreSQL Tools
|
|
|
|
|
#
|
2023-01-02 11:53:55 +05:30
|
|
|
# Copyright (C) 2013 - 2023, The pgAdmin Development Team
|
2020-08-20 14:04:24 +05:30
|
|
|
# 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)
|