Exemplo n.º 1
0
 def test_get_suse(self):
     result = hosts._normalized_distro_name('SUSE LINUX')
     assert result == 'suse'
Exemplo n.º 2
0
 def test_get_centos(self):
     result = hosts._normalized_distro_name('CentOS Linux')
     assert result == 'centos'
Exemplo n.º 3
0
 def test_get_ubuntu(self):
     result = hosts._normalized_distro_name('Ubuntu')
     assert result == 'ubuntu'
Exemplo n.º 4
0
 def test_get_virtuozzo(self):
     result = hosts._normalized_distro_name('Virtuozzo Linux')
     assert result == 'virtuozzo'
Exemplo n.º 5
0
 def test_get_arch(self):
     result = hosts._normalized_distro_name('Arch Linux')
     assert result == 'arch'
Exemplo n.º 6
0
 def test_get_debian(self):
     result = hosts._normalized_distro_name('Debian')
     assert result == 'debian'
Exemplo n.º 7
0
 def test_get_mint(self):
     result = hosts._normalized_distro_name('LinuxMint')
     assert result == 'ubuntu'
Exemplo n.º 8
0
 def test_get_mint(self):
     result = hosts._normalized_distro_name('LinuxMint')
     assert result == 'ubuntu'
Exemplo n.º 9
0
 def test_get_suse(self):
     result = hosts._normalized_distro_name('SUSE LINUX')
     assert result == 'suse'
Exemplo n.º 10
0
 def test_get_centos(self):
     result = hosts._normalized_distro_name('CentOS Linux')
     assert result == 'centos'
Exemplo n.º 11
0
 def test_get_ubuntu(self):
     result = hosts._normalized_distro_name('Ubuntu')
     assert result == 'ubuntu'
Exemplo n.º 12
0
 def test_get_debian(self):
     result = hosts._normalized_distro_name("Debian")
     assert result == "debian"
Exemplo n.º 13
0
 def test_get_suse(self):
     result = hosts._normalized_distro_name("SUSE LINUX")
     assert result == "suse"
Exemplo n.º 14
0
 def test_get_ubuntu(self):
     result = hosts._normalized_distro_name("Ubuntu")
     assert result == "ubuntu"
Exemplo n.º 15
0
 def test_get_redhat(self):
     result = hosts._normalized_distro_name('RedHatEnterpriseLinux')
     assert result == 'redhat'
Exemplo n.º 16
0
 def test_get_redhat(self):
     result = hosts._normalized_distro_name('RedHatEnterpriseLinux')
     assert result == 'redhat'
Exemplo n.º 17
0
 def test_get_debian(self):
     result = hosts._normalized_distro_name('Debian')
     assert result == 'debian'
Exemplo n.º 18
0
 def test_get_virtuozzo(self):
     result = hosts._normalized_distro_name('Virtuozzo Linux')
     assert result == 'virtuozzo'