Ejemplo n.º 1
0
def test_guess_fallback():
    mimetype, _ = guess('ha', 'text/plain')
    assert mimetype == 'text/plain'
Ejemplo n.º 2
0
def test_guess_recognised():
    mimetype, _ = guess('file.html')
    assert mimetype == 'text/html'
Ejemplo n.º 3
0
def test_guess_recognised():
    mimetype, _ = guess('file.html', 'text/plain')
    assert mimetype == 'text/html'
Ejemplo n.º 4
0
def test_guess_fallback():
    mimetype, _ = guess('ha', fallback='text/plain')
    assert mimetype == 'text/plain'