mirror of
https://github.com/aptly-dev/aptly.git
synced 2026-06-03 05:00:56 +00:00
Tests for mirror list/show.
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
from lib import BaseTest
|
||||
|
||||
|
||||
class ShowMirror1Test(BaseTest):
|
||||
"""
|
||||
show mirror: regular mirror
|
||||
"""
|
||||
fixtureCmds = ["aptly mirror create mirror1 http://mirror.yandex.ru/debian/ wheezy"]
|
||||
runCmd = "aptly mirror show mirror1"
|
||||
|
||||
|
||||
class ShowMirror2Test(BaseTest):
|
||||
"""
|
||||
show mirror: missing mirror
|
||||
"""
|
||||
runCmd = "aptly mirror show mirror-xx"
|
||||
expectedCode = 1
|
||||
Reference in New Issue
Block a user