예제 #1
0
파일: test_sinks.py 프로젝트: timClicks/cop
def test_writer_supports_multiple_modes():
    f = StringIO()
    iterable('123', writer(f, 'writelines'))
    f.seek(0)
    result = f.read()
    print result
    assert result == '123'
예제 #2
0
파일: test_sinks.py 프로젝트: timClicks/cop
def test_writer_supports_multiple_modes():
    f = StringIO()
    iterable('123', writer(f, 'writelines'))
    f.seek(0)
    result = f.read()
    print result
    assert result == '123'
예제 #3
0
파일: test_sinks.py 프로젝트: timClicks/cop
def test_writer_on_filelike():
    f = StringIO()
    iterable('123', writer(f, 'write'))
    f.seek(0)
    result = f.read()
    assert result == '123'
예제 #4
0
파일: test_sinks.py 프로젝트: timClicks/cop
def test_writer_on_std_file_descriptors():
    iterable('123', writer(sys.stdout))
예제 #5
0
파일: test_sinks.py 프로젝트: timClicks/cop
def test_writer_on_filelike():
    f = StringIO()
    iterable('123', writer(f, 'write'))
    f.seek(0)
    result = f.read()
    assert result == '123'
예제 #6
0
파일: test_sinks.py 프로젝트: timClicks/cop
def test_writer_on_std_file_descriptors():
    iterable('123', writer(sys.stdout))