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