mirror of
https://github.com/aptly-dev/aptly.git
synced 2026-01-12 03:21:33 +00:00
39 lines
812 B
Python
39 lines
812 B
Python
from lib import BaseTest
|
|
|
|
|
|
class RunTask1Test(BaseTest):
|
|
"""
|
|
task run: simple commands, 1-word command
|
|
"""
|
|
runCmd = "aptly task run repo list, repo create local, repo drop local, version"
|
|
|
|
|
|
class RunTask2Test(BaseTest):
|
|
"""
|
|
task run: commands with args
|
|
"""
|
|
runCmd = "aptly task run -- repo list -raw, repo create local, repo list"
|
|
|
|
|
|
class RunTask3Test(BaseTest):
|
|
"""
|
|
task run: failure
|
|
"""
|
|
expectedCode = 1
|
|
runCmd = "aptly task run -- repo show a, repo create local, repo list"
|
|
|
|
|
|
class RunTask4Test(BaseTest):
|
|
"""
|
|
task run: from file
|
|
"""
|
|
runCmd = "aptly task run -filename=${testfiles}/task"
|
|
|
|
|
|
class RunTask5Test(BaseTest):
|
|
"""
|
|
task run: from file not found
|
|
"""
|
|
expectedCode = 1
|
|
runCmd = "aptly task run -filename=not_found"
|