コード例 #1
0
 def test_factory_tuple(self):
     host = Host.factory(('host01.example.com',))
     assert host.hostname == 'host01.example.com'
コード例 #2
0
 def test_factory_exception(self):
     with pytest.raises(ValueError):
         Host.factory('host01.example.com')
コード例 #3
0
 def test_factory_dict(self):
     host = Host.factory(dict(hostname='host01.example.com'))
     assert host.hostname == 'host01.example.com'