mirror of
https://github.com/aptly-dev/aptly.git
synced 2026-01-12 03:21:33 +00:00
15 lines
200 B
Python
15 lines
200 B
Python
"""
|
|
Test aptly version
|
|
"""
|
|
|
|
from lib import BaseTest
|
|
|
|
|
|
class VersionTest(BaseTest):
|
|
"""
|
|
version should match
|
|
"""
|
|
gold_processor = BaseTest.expand_environ
|
|
|
|
runCmd = "aptly version"
|