mirror of
https://github.com/aptly-dev/aptly.git
synced 2026-01-12 03:21:33 +00:00
16 lines
304 B
Python
16 lines
304 B
Python
"""
|
|
Test config file generation.
|
|
"""
|
|
|
|
import os
|
|
from lib import BaseTest
|
|
|
|
|
|
class Test(BaseTest):
|
|
runCmd = "aptly"
|
|
checkedFile = os.path.join(os.environ["HOME"], ".aptly.conf")
|
|
|
|
check = BaseTest.check_file
|
|
gold_processor = BaseTest.expand_environ
|
|
prepare = BaseTest.prepare_remove_all
|