Esempio n. 1
0
 def test_spaces_preserved(self):
     seq = ["hel lo", "what", "is up"]
     self.assertEqual(bpd.path_to_list(bpd.seq_to_path(seq)), seq)
Esempio n. 2
0
 def test_unicode_preserved(self):
     seq = [u'hello', u'what \x99 is', u'up']
     self.assertEqual(bpd.path_to_list(bpd.seq_to_path(seq)), seq)
Esempio n. 3
0
 def test_empty_strings_only_preserved_with_placeholder(self):
     seq = ['', '', '']
     self.assertEqual(bpd.path_to_list(bpd.seq_to_path(seq, 'PH'), 'PH'),
                      seq)
Esempio n. 4
0
 def test_empty_string_preserved_in_middle(self):
     seq = ['hello', '', 'sup']
     self.assertEqual(bpd.path_to_list(bpd.seq_to_path(seq)), seq)
Esempio n. 5
0
 def test_empty_strings_only(self):
     seq = ['', '', '']
     self.assertEqual(bpd.path_to_list(bpd.seq_to_path(seq)), seq)
Esempio n. 6
0
 def test_placeholder_does_replace(self):
     seq = ['hello', '', 'sup']
     self.assertFalse('//' in bpd.seq_to_path(seq, 'PH'))
Esempio n. 7
0
 def test_multiple_elements_preserved(self):
     seq = ['hello', 'there', 'how', 'are', 'you']
     self.assertEqual(bpd.path_to_list(bpd.seq_to_path(seq)), seq)
Esempio n. 8
0
 def test_placeholder_does_replace(self):
     seq = ["hello", "", "sup"]
     self.assertFalse("//" in bpd.seq_to_path(seq, "PH"))
Esempio n. 9
0
 def test_single_element_preserved(self):
     seq = ['hello']
     self.assertEqual(bpd.path_to_list(bpd.seq_to_path(seq)), seq)
Esempio n. 10
0
 def test_slashes_not_encoded_as_slashes(self):
     no_slashes = bpd.seq_to_path(["goodday", "sir"])
     with_slashes = bpd.seq_to_path(["good/day", "sir"])
     self.assertEqual(no_slashes.count("/"), with_slashes.count("/"))
Esempio n. 11
0
 def test_empty_strings_only_preserved_with_placeholder(self):
     seq = ["", "", ""]
     self.assertEqual(bpd.path_to_list(bpd.seq_to_path(seq, "PH"), "PH"), seq)
Esempio n. 12
0
 def test_unicode_preserved(self):
     seq = [u"hello", u"what \x99 is", u"up"]
     self.assertEqual(bpd.path_to_list(bpd.seq_to_path(seq)), seq)
Esempio n. 13
0
 def test_backslashes_preserved(self):
     seq = ["hel\\lo", "what", "is", "up"]
     self.assertEqual(bpd.path_to_list(bpd.seq_to_path(seq)), seq)
Esempio n. 14
0
 def test_empty_string_preserved_in_middle(self):
     seq = ["hello", "", "sup"]
     self.assertEqual(bpd.path_to_list(bpd.seq_to_path(seq)), seq)
Esempio n. 15
0
 def test_slashes_not_encoded_as_slashes(self):
     no_slashes = bpd.seq_to_path(['goodday', 'sir'])
     with_slashes = bpd.seq_to_path(['good/day', 'sir'])
     self.assertEqual(no_slashes.count('/'), with_slashes.count('/'))
Esempio n. 16
0
 def test_multiple_elements_preserved(self):
     seq = ['hello', 'there', 'how', 'are', 'you']
     self.assertEqual(bpd.path_to_list(bpd.seq_to_path(seq)), seq)
Esempio n. 17
0
 def test_empty_strings_only_preserved_with_placeholder(self):
     seq = ['', '', '']
     self.assertEqual(bpd.path_to_list(bpd.seq_to_path(seq, 'PH'), 'PH'),
                      seq)
Esempio n. 18
0
 def test_spaces_preserved(self):
     seq = ['hel lo', 'what', 'is up']
     self.assertEqual(bpd.path_to_list(bpd.seq_to_path(seq)), seq)
Esempio n. 19
0
 def test_single_element_preserved(self):
     seq = ['hello']
     self.assertEqual(bpd.path_to_list(bpd.seq_to_path(seq)), seq)
Esempio n. 20
0
 def test_empty_string_preserved_in_middle(self):
     seq = ['hello', '', 'sup']
     self.assertEqual(bpd.path_to_list(bpd.seq_to_path(seq)), seq)
Esempio n. 21
0
 def test_spaces_preserved(self):
     seq = ['hel lo', 'what', 'is up']
     self.assertEqual(bpd.path_to_list(bpd.seq_to_path(seq)), seq)
Esempio n. 22
0
 def test_empty_strings_preserved_on_ends(self):
     seq = ['', 'whatever', '']
     self.assertEqual(bpd.path_to_list(bpd.seq_to_path(seq)), seq)
Esempio n. 23
0
 def test_empty_strings_preserved_on_ends(self):
     seq = ['', 'whatever', '']
     self.assertEqual(bpd.path_to_list(bpd.seq_to_path(seq)), seq)
Esempio n. 24
0
 def test_empty_strings_only(self):
     seq = ['', '', '']
     self.assertEqual(bpd.path_to_list(bpd.seq_to_path(seq)), seq)
Esempio n. 25
0
 def test_backslashes_preserved(self):
     seq = ['hel\\lo', 'what', 'is', 'up']
     self.assertEqual(bpd.path_to_list(bpd.seq_to_path(seq)), seq)
Esempio n. 26
0
 def test_backslashes_preserved(self):
     seq = ['hel\\lo', 'what', 'is', 'up']
     self.assertEqual(bpd.path_to_list(bpd.seq_to_path(seq)), seq)
Esempio n. 27
0
 def test_slashes_not_encoded_as_slashes(self):
     no_slashes = bpd.seq_to_path(['goodday', 'sir'])
     with_slashes = bpd.seq_to_path(['good/day', 'sir'])
     self.assertEqual(no_slashes.count('/'), with_slashes.count('/'))
Esempio n. 28
0
 def test_unicode_preserved(self):
     seq = [u'hello', u'what \x99 is', u'up']
     self.assertEqual(bpd.path_to_list(bpd.seq_to_path(seq)), seq)
Esempio n. 29
0
 def test_placeholder_does_replace(self):
     seq = ['hello', '', 'sup']
     self.assertFalse('//' in bpd.seq_to_path(seq, 'PH'))
Esempio n. 30
0
 def test_multiple_elements_preserved(self):
     seq = ["hello", "there", "how", "are", "you"]
     self.assertEqual(bpd.path_to_list(bpd.seq_to_path(seq)), seq)