-
Notifications
You must be signed in to change notification settings - Fork 343
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Daniel Brauer <[email protected]>
- Loading branch information
Showing
2 changed files
with
23 additions
and
22 deletions.
There are no files selected for viewing
41 changes: 21 additions & 20 deletions
41
tests/data/graph/querybuilder/sample_data/case_insensitive_prop_ref.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,34 @@ | ||
FAKE_GITHUB_ORG_DATA = { | ||
'url': 'https://example.com/my_org', | ||
'login': 'my_org', | ||
} | ||
|
||
FAKE_GITHUB_USER_DATA = [ | ||
{ | ||
'MEMBER_OF': FAKE_GITHUB_ORG_DATA['url'], | ||
'hasTwoFactorEnabled': None, | ||
'node': { | ||
'url': 'https://example.com/hjsimpson', | ||
'login': 'HjsimPson', # Upper and lowercase | ||
'name': 'Homer Simpson', | ||
'isSiteAdmin': False, | ||
'email': '[email protected]', | ||
'company': 'Springfield Nuclear Power Plant', | ||
}, | ||
'url': 'https://example.com/hjsimpson', | ||
'login': 'HjsimPson', # Upper and lowercase | ||
'name': 'Homer Simpson', | ||
'isSiteAdmin': False, | ||
'isEnterpriseOwner': False, | ||
'email': '[email protected]', | ||
'company': 'Springfield Nuclear Power Plant', | ||
'role': 'MEMBER', | ||
}, { | ||
'MEMBER_OF': FAKE_GITHUB_ORG_DATA['url'], | ||
'hasTwoFactorEnabled': None, | ||
'node': { | ||
'url': 'https://example.com/mbsimpson', | ||
'login': 'mbsimp-son', # All lowercase | ||
'name': 'Marge Simpson', | ||
'isSiteAdmin': False, | ||
'email': '[email protected]', | ||
'company': 'Simpson Residence', | ||
}, | ||
'url': 'https://example.com/mbsimpson', | ||
'login': 'mbsimp-son', # All lowercase | ||
'name': 'Marge Simpson', | ||
'isEnterpriseOwner': True, | ||
'isSiteAdmin': False, | ||
'email': '[email protected]', | ||
'company': 'Simpson Residence', | ||
'role': 'ADMIN', | ||
}, | ||
] | ||
|
||
FAKE_GITHUB_ORG_DATA = { | ||
'url': 'https://example.com/my_org', | ||
'login': 'my_org', | ||
} | ||
|
||
FAKE_EMPLOYEE_DATA = [ | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters