コード例 #1
0
ファイル: test_common.py プロジェクト: while/pandas
def test_banner():
    ban = com.banner('hi')
    assert (ban == ('%s\nhi\n%s' % ('=' * 80, '=' * 80)))
コード例 #2
0
ファイル: test_common.py プロジェクト: 5i7788/pandas
def test_banner():
    ban = com.banner('hi')
    assert(ban == ('%s\nhi\n%s' % ('=' * 80, '=' * 80)))
コード例 #3
0
ファイル: test_common.py プロジェクト: spencerlyon2/pandas
def test_banner():
    ban = com.banner("hi")
    assert ban == ("%s\nhi\n%s" % ("=" * 80, "=" * 80))