コード例 #1
0
ファイル: test_utils.py プロジェクト: Code37/coursera-dl
def test_format_section_works_correctly_with_verbose():
    rv = format_section(9, 'bill', 'WEAVING', True)
    assert 'WEAVING_09_bill' == rv
コード例 #2
0
def test_format_section_works_correctly_with_verbose():
    rv = format_section(9, 'bill', 'WEAVING', True)
    assert 'WEAVING_09_bill' == rv
コード例 #3
0
ファイル: test_utils.py プロジェクト: Code37/coursera-dl
def test_format_section_works_correctly():
    rv = format_section(9, 'bob', 'WEAVING', False)
    assert '09_bob' == rv
コード例 #4
0
def test_format_section_works_correctly():
    rv = format_section(9, 'bob', 'WEAVING', False)
    assert '09_bob' == rv