コード例 #1
0
ファイル: test_cleaner.py プロジェクト: cfpb/cfgov-refresh
 def test_title_case_first_special_word_titlecase(self):
     self.assertEqual(
         title_case('of the people by the people'),
         'Of the People by the People'
     )
コード例 #2
0
ファイル: test_cleaner.py プロジェクト: cfpb/cfgov-refresh
 def test_title_case_multiple_words(self):
     self.assertEqual(
         title_case('SOME WORDS like tHiS'),
         'Some Words Like This'
     )
コード例 #3
0
ファイル: test_cleaner.py プロジェクト: cfpb/cfgov-refresh
 def test_title_case_leaves_special_words_lowercase(self):
     self.assertEqual(
         title_case('HELLO FOR THE PEOPLE'),
         'Hello for the People'
     )
コード例 #4
0
ファイル: test_cleaner.py プロジェクト: cfpb/cfgov-refresh
 def test_title_case_none_returns_none(self):
     self.assertIsNone(title_case(None))
コード例 #5
0
ファイル: test_cleaner.py プロジェクト: cfpb/cfgov-refresh
 def test_title_case_empty_string_returns_none(self):
     self.assertIsNone(title_case(''))
コード例 #6
0
 def test_title_case_first_special_word_titlecase(self):
     self.assertEqual(title_case('of the people by the people'),
                      'Of the People by the People')
コード例 #7
0
 def test_title_case_leaves_special_words_lowercase(self):
     self.assertEqual(title_case('HELLO FOR THE PEOPLE'),
                      'Hello for the People')
コード例 #8
0
 def test_title_case_multiple_words(self):
     self.assertEqual(title_case('SOME WORDS like tHiS'),
                      'Some Words Like This')
コード例 #9
0
 def test_title_case_empty_string_returns_none(self):
     self.assertIsNone(title_case(''))
コード例 #10
0
 def test_title_case_none_returns_none(self):
     self.assertIsNone(title_case(None))