Ejemplo n.º 1
0
 def test_unittest(self, fake_LOG):
     git_info = test_shell.mock_git_info()
     args = [5, git_info, 'new_app',
             '1-2-3-4', 'heroku', 'docker', 44, 'pep8']
     noop_handler.Handler().unittest(self.ctx, *args)
     message = 'Unittest ' + ', '.join([str(a) for a in args])
     fake_LOG.debug.assert_called_once_with(_("%s") % message)
Ejemplo n.º 2
0
 def test_unittest(self, fake_LOG):
     args = [5, 'git://example.com/foo', 'pep8']
     noop_handler.Handler().unittest(self.ctx, *args)
     message = 'Unittest %s %s %s' % tuple(args)
     fake_LOG.debug.assert_called_once_with(_("%s") % message)
Ejemplo n.º 3
0
 def test_echo(self, fake_LOG):
     noop_handler.Handler().echo({}, 'foo')
     fake_LOG.debug.assert_called_once_with(_('%s') % 'foo')
Ejemplo n.º 4
0
 def test_build(self, fake_LOG):
     args = [5, 'git://example.com/foo', 'new_app',
             '1-2-3-4', 'heroku', 'docker', 44, None]
     noop_handler.Handler().build(self.ctx, *args)
     message = 'Build %s %s %s %s %s %s %s %s' % tuple(args)
     fake_LOG.debug.assert_called_once_with(_("%s") % message)