mirror of
https://github.com/kennethreitz-archive/python-build.git
synced 2026-06-05 23:30:18 +00:00
9 lines
211 B
Python
9 lines
211 B
Python
class UpdateOptions(object):
|
|
head = False
|
|
config = False
|
|
|
|
def test_update():
|
|
from pythonbrew.commands.update import UpdateCommand
|
|
c = UpdateCommand()
|
|
c.run_command(UpdateOptions(), None)
|
|
|