コード例 #1
0
ファイル: test_system.py プロジェクト: apleshakov/thespiae
 def test_content_range_parsing8(self):
     self.assertIsNone(parse_content_range('bytes 12-/23'))
コード例 #2
0
ファイル: test_system.py プロジェクト: apleshakov/thespiae
 def test_content_range_parsing9(self):
     self.assertIsNone(parse_content_range('bytes -12/23'))
コード例 #3
0
ファイル: test_system.py プロジェクト: apleshakov/thespiae
 def test_content_range_parsing7(self):
     self.assertEqual(parse_content_range('bytes 12-23/*'),
                      ContentRangeData(12, 23, None))
コード例 #4
0
ファイル: test_system.py プロジェクト: apleshakov/thespiae
 def test_content_range_parsing6(self):
     self.assertIsNone(parse_content_range(''))
コード例 #5
0
ファイル: test_system.py プロジェクト: apleshakov/thespiae
 def test_content_range_parsing4(self):
     self.assertIsNone(parse_content_range('bytes 12-23/'))
コード例 #6
0
ファイル: test_system.py プロジェクト: apleshakov/thespiae
 def test_content_range_parsing3(self):
     self.assertEqual(parse_content_range('bytes 12-23/34'),
                      ContentRangeData(12, 23, 34))
コード例 #7
0
ファイル: test_system.py プロジェクト: apleshakov/thespiae
 def test_content_range_parsing2(self):
     self.assertEqual(parse_content_range('bytes */*'),
                      ContentRangeData(None, None, None))