コード例 #1
0
ファイル: test_list_profiles.py プロジェクト: enkeys/yacfg
def test_basic(*_):
    expected = [
        'profile.yaml',
        'a/profile.yaml',
        'a/b/profile.yaml',
        'b/my_profile.yaml',
    ]
    result = list_profiles()
    assert expected == result
コード例 #2
0
def test_basic(*_):
    expected = [
        "profile.yaml",
        "a/profile.yaml",
        "a/b/profile.yaml",
        "b/my_profile.yaml",
    ]
    result = list_profiles()
    assert result == expected
コード例 #3
0
ファイル: test_list_profiles.py プロジェクト: enkeys/yacfg
def test_empty(*_):
    expected = []
    result = list_profiles()
    assert expected == result
コード例 #4
0
ファイル: test_list_profiles.py プロジェクト: enkeys/yacfg
def test_not_a_profile(*_):
    expected = []
    result = list_profiles()
    assert expected == result