This repository has been archived by the owner on Feb 8, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 308
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Front-load packages that are actually on Gratipay
Make the onboarding as easy as possible.
- Loading branch information
1 parent
034614f
commit b81084e
Showing
2 changed files
with
22 additions
and
22 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -22,33 +22,33 @@ def test_auth_also_gets_discovery_page_by_default(self): | |
|
||
def test_pasting_a_package_json_works(self): | ||
self.make_package(name='amperize', description='Amperize!') | ||
glob = self.make_package(name='glob', description='Glob!', emails=['[email protected]']) | ||
mysql = self.make_package(name='mysql', description='MySQL!', emails=['[email protected]']) | ||
self.make_package(name='netjet', description='Netjet!', emails=['[email protected]']) | ||
scape = self.make_package(name='scape', description='Reject!', emails=['[email protected]']) | ||
self.claim_package(self.make_participant('alice'), 'amperize') | ||
self.claim_package(self.make_participant('bob'), 'glob') | ||
self.claim_package(self.make_participant('bob'), 'mysql') | ||
self.claim_package(self.make_participant('goat'), 'scape') | ||
|
||
admin = self.make_admin() | ||
glob.team.update(name='Glub') | ||
glob.team.update_review_status('approved', admin) | ||
mysql.team.update(name='MySQL') | ||
mysql.team.update_review_status('approved', admin) | ||
scape.team.update_review_status('rejected', admin) | ||
|
||
self.visit('/on/npm/') | ||
self.css('textarea').fill('''\ | ||
{ "dependencies": { "glob": "..." , "amperize": "...", "scape": "..."} | ||
{ "dependencies": {"scape": "...", "mysql": "...", "amperize": "..."} | ||
, "optionalDependencies": {"netjet": "...", "falafel": "..."} | ||
} | ||
''') | ||
self.css('form.package-json button').click() | ||
|
||
names = [x.text for x in self.css('.listing-name')] | ||
assert names == ['glob \u2192 Glub', 'amperize', 'scape', 'netjet', 'falafel'] | ||
assert names == ['mysql \u2192 MySQL', 'scape', 'amperize', 'netjet', 'falafel'] | ||
|
||
statuses = [x.text[3:] for x in self.css('.listing-details .status')] | ||
assert statuses == ['Approved', 'Unreviewed', 'Rejected', 'Unclaimed'] | ||
assert statuses == ['Approved', 'Rejected', 'Unreviewed', 'Unclaimed'] | ||
|
||
enabled = [not x.has_class('disabled') for x in self.css('td.item')] | ||
assert enabled == [True, True, True, True, False] |
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