コード例 #1
0
ファイル: printer_test.py プロジェクト: AdamSaleh/katello
 def test_multiple_lines_with_custom_glue(self):
     self.assertEquals(text_to_line("one\ntwo", glue="##"), "one##two")
コード例 #2
0
ファイル: printer_test.py プロジェクト: AdamSaleh/katello
 def test_array(self):
     self.assertEquals(text_to_line(["one", "two"]), "one two")
コード例 #3
0
ファイル: printer_test.py プロジェクト: AdamSaleh/katello
 def test_empty_array(self):
     self.assertEquals(text_to_line([]), "")
コード例 #4
0
ファイル: printer_test.py プロジェクト: AdamSaleh/katello
 def test_multiple_lines(self):
     self.assertEquals(text_to_line("one\ntwo"), "one two")
コード例 #5
0
ファイル: printer_test.py プロジェクト: AdamSaleh/katello
 def test_one_line(self):
     self.assertEquals(text_to_line("one"), "one")
コード例 #6
0
ファイル: printer_test.py プロジェクト: AdamSaleh/katello
 def test_empty_string(self):
     self.assertEquals(text_to_line(""), "")