Resume/CV
I am not actively looking for work at the moment. What you'll find below is a tongue in cheek unit test case I put
together to express what I look for in potential employers.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38 | from unittest import TestCase, main
from companies import YourCompany
class TestYourCompany(TestCase):
def setUp(self):
self.company = YourCompany()
def testDeveloperTesting(self):
"""Unit tests (this probably goes without saying)"""
self.assertTrue(self.company.unittests_code())
def testCodeReviewsPerformedRegularly(self):
"""Because four eyes are better than two"""
self.assertTrue(2 < self.company.eyes_on_code())
self.assertTrue(2 >= self.company.average_employee_eye_count())
def testHaveAContinuousBuild(self):
"""An email goes out if someone breaks it"""
# Bonus if there's a fun broadcast of the status,
# like say a police siren
self.assertTrue(self.company.has_a_continuous_build())
def testSourceControl(self):
"""Such as svn, hg, etc"""
self.assertTrue(self.company.has_system("Source Control"))
def testDefectTracking(self):
"""Such as trac, bugzilla, jira"""
self.assertTrue(self.company.has_system("Defect Tracking"))
def testDevelopersChooseTheirOwnEnvironment(self):
"""I prefer gnu emacs, but that really shouldn't matter"""
self.assertTrue(self.company.can_use_editor("GNU Emacs"))
if __name__ == '__main__':
main()
|
I'm looking for something like this:
......
----------------------------------------------------------------------
Ran 6 tests in 0.001s
OK
Does that make sense to you? Would you see the same output if I ran these tests on your team? Really? Great! You can find a copy of my resume
here.