示例#1
0
    def test_autodetect_tsv(self):

        eq_(h.unified_resource_format('tsv'), 'TSV')

        eq_(h.unified_resource_format('text/tab-separated-values'), 'TSV')

        eq_(h.unified_resource_format('text/tsv'), 'TSV')
示例#2
0
    def test_autodetect_tsv(self):

        eq_(h.unified_resource_format('tsv'), 'TSV')

        eq_(h.unified_resource_format('text/tab-separated-values'), 'TSV')

        eq_(h.unified_resource_format('text/tsv'), 'TSV')
示例#3
0
def clean_format(format):
    return h.unified_resource_format(format)
示例#4
0
def clean_format(format):
    return h.unified_resource_format(format)
示例#5
0
def test_unified_resource_format(fmt, exp):
    assert h.unified_resource_format(fmt) == exp
示例#6
0
 def test_unified_resource_format_by_alternative_description2(self):
     eq_(h.unified_resource_format('Excel'), 'XLS')
示例#7
0
 def test_unified_resource_format_by_alternative_description(self):
     eq_(h.unified_resource_format('application/msexcel'), 'XLS')
示例#8
0
 def test_unified_resource_format_by_primary_mimetype(self):
     eq_(h.unified_resource_format('application/vnd.ms-excel'), 'XLS')
示例#9
0
 def test_unified_resource_format_by_description(self):
     eq_(h.unified_resource_format('Excel document'), 'XLS')
示例#10
0
 def test_unified_resource_format_by_extension(self):
     eq_(h.unified_resource_format('xls'), 'XLS')
示例#11
0
 def test_unified_resource_format_by_alternative_description2(self):
     eq_(h.unified_resource_format('Excel'), 'XLS')
示例#12
0
 def test_unified_resource_format_by_alternative_description(self):
     eq_(h.unified_resource_format('application/msexcel'), 'XLS')
示例#13
0
 def test_unified_resource_format_by_primary_mimetype(self):
     eq_(h.unified_resource_format('application/vnd.ms-excel'), 'XLS')
示例#14
0
 def test_unified_resource_format_by_description(self):
     eq_(h.unified_resource_format('Excel document'), 'XLS')
示例#15
0
 def test_unified_resource_format_by_extension(self):
     eq_(h.unified_resource_format('xls'), 'XLS')
示例#16
0
def clean_format(format: str):
    """Normalize resource's format.
    """
    return h.unified_resource_format(format)