mirror of
https://github.com/kennethreitz-archive/python-build.git
synced 2026-06-05 15:20:16 +00:00
9 lines
202 B
Python
9 lines
202 B
Python
class ListOptions(object):
|
|
all_versions = False
|
|
known = False
|
|
|
|
def test_list():
|
|
from pythonbrew.commands.list import ListCommand
|
|
c = ListCommand()
|
|
c.run_command(ListOptions(), None)
|