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.
Improvements to fake_data.make_package
- use a constant - return Package
- Loading branch information
1 parent
11a436f
commit b81cb7d
Showing
1 changed file
with
7 additions
and
5 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 |
---|---|---|
|
@@ -17,6 +17,7 @@ | |
from gratipay.exceptions import NoSelfTipping, NoTippee, BadAmount | ||
from gratipay.models.account_elsewhere import AccountElsewhere | ||
from gratipay.models.exchange_route import ExchangeRoute | ||
from gratipay.models.package import NPM, Package | ||
from gratipay.models.participant import Participant, MAX_TIP, MIN_TIP | ||
from gratipay.security import user | ||
from gratipay.testing.vcr import use_cassette | ||
|
@@ -195,14 +196,15 @@ def make_team(self, *a, **kw): | |
return team | ||
|
||
|
||
def make_package(self, package_manager='npm', name='foo', description='Foo', | ||
def make_package(self, package_manager=NPM, name='foo', description='Foo', | ||
emails=['[email protected]']): | ||
"""Factory for packages. | ||
""" | ||
return self.db.one( 'INSERT INTO packages (package_manager, name, description, emails) ' | ||
'VALUES (%s, %s, %s, %s) RETURNING *' | ||
, (package_manager, name, description, emails) | ||
) | ||
self.db.run( 'INSERT INTO packages (package_manager, name, description, emails) ' | ||
'VALUES (%s, %s, %s, %s) RETURNING *' | ||
, (package_manager, name, description, emails) | ||
) | ||
return Package.from_names(NPM, name) | ||
|
||
|
||
def make_participant(self, username, **kw): | ||
|