Example #1
0
 def test_install_system_gem_raises_exception_on_failure(self, *args,
                                                         **kwargs):
     with self.assertRaises(SystemExit) as cm:
         pkg.install_system_gem('non_existing_gem')
     self.assertEqual(cm.exception.code, 1)
Example #2
0
 def test_install_system_gem_returns_True_on_success(self, *args, **kwargs):
     self.assertTrue(pkg.install_system_gem('small'))
Example #3
0
 def test_install_system_gem_installs_gem(self, *args, **kwargs):
     pkg.install_system_gem('small')
     self.assertTrue('small' in sudo('gem list'))
Example #4
0
 def test_install_system_gem_raises_exception_on_failure(
         self, *args, **kwargs):
     with self.assertRaises(SystemExit) as cm:
         pkg.install_system_gem('non_existing_gem')
     self.assertEqual(cm.exception.code, 1)
Example #5
0
 def test_install_system_gem_returns_True_on_success(self, *args, **kwargs):
     self.assertTrue(pkg.install_system_gem('small'))
Example #6
0
 def test_install_system_gem_installs_gem(self, *args, **kwargs):
     pkg.install_system_gem('small')
     self.assertTrue('small' in sudo('gem list'))