Exemplo n.º 1
0
def test_is_rst_file_blank():
    assert files.is_rst_file("") is False
Exemplo n.º 2
0
def test_is_rst_file_caps():
    assert files.is_rst_file("test.RST") is True
Exemplo n.º 3
0
def test_is_rst_file_not():
    assert files.is_rst_file("test.py") is False
Exemplo n.º 4
0
def test_is_rst_file():
    assert files.is_rst_file("test.rst") is True