コード例 #1
0
ファイル: test_ifd_style.py プロジェクト: ARD92/py-junos-eznc
 def test_ifd_style_else_condition(self):
     self.facts['personality'] = 'TEXT'
     ifd_style(self.dev, self.facts)
     self.assertEqual(self.facts['ifd_style'], 'CLASSIC')
コード例 #2
0
 def test_ifd_style_else_condition(self):
     self.facts['personality'] = 'TEXT'
     ifd_style(self.dev, self.facts)
     self.assertEqual(self.facts['ifd_style'], 'CLASSIC')
コード例 #3
0
ファイル: test_ifd_style.py プロジェクト: ARD92/py-junos-eznc
 def test_ifd_style_if_condition(self):
     self.facts['personality'] = 'SWITCH'
     ifd_style(self.dev, self.facts)
     self.assertEqual(self.facts['ifd_style'], 'SWITCH')
コード例 #4
0
 def test_ifd_style_if_condition(self):
     self.facts['personality'] = 'SWITCH'
     ifd_style(self.dev, self.facts)
     self.assertEqual(self.facts['ifd_style'], 'SWITCH')