Beispiel #1
0
 def test_install_gem_raises_exception_on_failure(self, *args, **kwargs):
     with self.assertRaises(SystemExit) as cm:
         pkg.install_gem('non_existing_gem')
     self.assertEqual(cm.exception.code, 1)
Beispiel #2
0
 def test_install_gem_returns_True_on_success(self, *args, **kwargs):
     self.assertTrue(pkg.install_gem('small'))
Beispiel #3
0
 def test_install_gem_installs_gem(self, *args, **kwargs):
     pkg.install_gem('small')
     self.assertTrue('small' in run('gem list'))
Beispiel #4
0
 def test_install_gem_raises_exception_on_failure(self, *args, **kwargs):
     with self.assertRaises(SystemExit) as cm:
         pkg.install_gem('non_existing_gem')
     self.assertEqual(cm.exception.code, 1)
Beispiel #5
0
 def test_install_gem_returns_True_on_success(self, *args, **kwargs):
     self.assertTrue(pkg.install_gem('small'))
Beispiel #6
0
 def test_install_gem_installs_gem(self, *args, **kwargs):
     pkg.install_gem('small')
     self.assertTrue('small' in run('gem list'))