コード例 #1
0
ファイル: t30_dumps.py プロジェクト: ChrisYang/Recode
 def test_d1_4(self):
     # Block of lines to Decimal-1 and back.
     common.request('../d1')
     input = ''.join(self.inputs)
     common.validate_back(input)
コード例 #2
0
 def test_2(self):
     # Block of lines to UTF-8 and back.
     common.request('l1/qp..u8/x')
     common.validate_back(input)
コード例 #3
0
ファイル: t30_dumps.py プロジェクト: ChrisYang/Recode
 def test_o4_4(self):
     # Block of lines to Octal-4 and back.
     common.request('../o4')
     input = ''.join(self.inputs)
     common.validate_back(input)
コード例 #4
0
ファイル: t30_dumps.py プロジェクト: ChrisYang/Recode
 def test_d1_3(self):
     # Single lines to Decimal-1 and back.
     common.request('../d1')
     for input in self.inputs:
         common.validate_back(input)
コード例 #5
0
ファイル: t40_java.py プロジェクト: tvbeat/Recode
 def test_2(self):
     # Block of lines to JAVA and back.
     common.request('l1/qp..java')
     common.validate_back(input)
コード例 #6
0
ファイル: t30_dumps.py プロジェクト: ChrisYang/Recode
 def test_o4_3(self):
     # Single lines to Octal-4 and back.
     common.request('../o4')
     for input in self.inputs:
         common.validate_back(input)
コード例 #7
0
 def test_d1_4(self):
     # Block of lines to Decimal-1 and back.
     common.request('../d1')
     input = ''.join(self.inputs)
     common.validate_back(input)
コード例 #8
0
def test_2():
    # Block of lines from Quoted Printable and back.
    common.request('qp..x1')
    common.validate_back(input)
コード例 #9
0
 def test_o4_4(self):
     # Block of lines to Octal-4 and back.
     common.request('../o4')
     input = ''.join(self.inputs)
     common.validate_back(input)
コード例 #10
0
 def test_d1_3(self):
     # Single lines to Decimal-1 and back.
     common.request('../d1')
     for input in self.inputs:
         common.validate_back(input)
コード例 #11
0
 def test_o4_3(self):
     # Single lines to Octal-4 and back.
     common.request('../o4')
     for input in self.inputs:
         common.validate_back(input)
コード例 #12
0
 def test_x4_4(self):
     # Block of lines to Hexadecimal-4 and back.
     common.request('../x4')
     input = ''.join(self.inputs)
     common.validate_back(input)
コード例 #13
0
 def test_x4_3(self):
     # Single lines to Hexadecimal-4 and back.
     common.request('../x4')
     for input in self.inputs:
         common.validate_back(input)
コード例 #14
0
 def test_3(self):
     # Single lines to Base64 and back.
     common.request('/../64')
     for input in self.inputs:
         common.validate_back(input)
コード例 #15
0
ファイル: t30_dumps.py プロジェクト: ChrisYang/Recode
 def test_x4_3(self):
     # Single lines to Hexadecimal-4 and back.
     common.request('../x4')
     for input in self.inputs:
         common.validate_back(input)
コード例 #16
0
 def test_4(self):
     # Block of lines to Base64 and back.
     common.request('/../64')
     common.validate_back(''.join(self.inputs))
コード例 #17
0
ファイル: t30_dumps.py プロジェクト: ChrisYang/Recode
 def test_x4_4(self):
     # Block of lines to Hexadecimal-4 and back.
     common.request('../x4')
     input = ''.join(self.inputs)
     common.validate_back(input)
コード例 #18
0
ファイル: t30_quoted.py プロジェクト: ChrisYang/Recode
def test_2():
    # Block of lines from Quoted Printable and back.
    common.request('qp..x1')
    common.validate_back(input)
コード例 #19
0
ファイル: t40_utf8.py プロジェクト: ChrisYang/Recode
 def test_2(self):
     # Block of lines to UTF-8 and back.
     common.request('l1/qp..u8/x')
     common.validate_back(input)