Esempio n. 1
0
 def test_prefix(self):
     self._deploy(prefix='prefix')
     commands.retitle('1.0', '1.0.1', prefix='prefix')
     check_call_silent(['git', 'checkout', 'gh-pages'])
     self._test_retitle(directory='prefix')
Esempio n. 2
0
 def test_branch(self):
     self._deploy('branch')
     commands.retitle('1.0', '1.0.1', branch='branch')
     check_call_silent(['git', 'checkout', 'branch'])
     self._test_retitle()
Esempio n. 3
0
 def test_commit_message(self):
     self._deploy()
     commands.retitle('1.0', '1.0.1', message='commit message')
     check_call_silent(['git', 'checkout', 'gh-pages'])
     self._test_retitle('commit message')
Esempio n. 4
0
 def test_retitle(self):
     self._deploy()
     commands.retitle('1.0', '1.0.1')
     check_call_silent(['git', 'checkout', 'gh-pages'])
     self._test_retitle()