コード例 #1
0
 def test_out_list_format_key_multiple_words(self):
     lo = ListOutput()
     self.assertEqual(lo._formatted_keys_cache, {})
     lo._get_formatted_key('locationIdState')
     self.assertEqual(lo._formatted_keys_cache,
                      {'locationIdState': 'Location Id State'})
コード例 #2
0
 def test_out_list_format_key_multiple_caps(self):
     lo = ListOutput()
     self.assertEqual(lo._formatted_keys_cache, {})
     lo._get_formatted_key('fooIDS')
     self.assertEqual(lo._formatted_keys_cache, {'fooIDS': 'Foo Ids'})
コード例 #3
0
 def test_out_list_format_key_single(self):
     lo = ListOutput()
     self.assertEqual(lo._formatted_keys_cache, {})
     lo._get_formatted_key('location')
     self.assertEqual(lo._formatted_keys_cache, {'location': 'Location'})
コード例 #4
0
ファイル: test_output.py プロジェクト: Azure/azure-cli
 def test_out_list_format_key_multiple_words(self):
     lo = ListOutput()
     self.assertEqual(lo._formatted_keys_cache, {})
     lo._get_formatted_key('locationIdState')
     self.assertEqual(lo._formatted_keys_cache, {'locationIdState': 'Location Id State'})
コード例 #5
0
ファイル: test_output.py プロジェクト: Azure/azure-cli
 def test_out_list_format_key_multiple_caps(self):
     lo = ListOutput()
     self.assertEqual(lo._formatted_keys_cache, {})
     lo._get_formatted_key('fooIDS')
     self.assertEqual(lo._formatted_keys_cache, {'fooIDS': 'Foo Ids'})
コード例 #6
0
ファイル: test_output.py プロジェクト: Azure/azure-cli
 def test_out_list_format_key_single(self):
     lo = ListOutput()
     self.assertEqual(lo._formatted_keys_cache, {})
     lo._get_formatted_key('location')
     self.assertEqual(lo._formatted_keys_cache, {'location': 'Location'})