コード例 #1
0
 def test_abbreviate_fqdn_abbreviated(self):
     self.assertEqual(tags.abbreviate_fqdn("subdomain"), "subdomain")
コード例 #2
0
 def test_abbreviate_fqdn(self):
     self.assertEqual(tags.abbreviate_fqdn("subdomain.example.com"),
                      "subdomain")
コード例 #3
0
ファイル: tags.py プロジェクト: BillTheBest/ganeti_webmgr-1
 def test_abbreviate_fqdn(self):
     self.assertEqual(tags.abbreviate_fqdn("subdomain.example.com"),
                      "subdomain")
コード例 #4
0
ファイル: tags.py プロジェクト: BillTheBest/ganeti_webmgr-1
 def test_abbreviate_fqdn_abbreviated(self):
     self.assertEqual(tags.abbreviate_fqdn("subdomain"), "subdomain")
コード例 #5
0
ファイル: tables.py プロジェクト: chancez/ganeti_webmgr
 def render_node(self, value):
     return abbreviate_fqdn(value)