浏览代码

initial commit

bmallred 11 年之前
当前提交
17764bedd1
共有 6 个文件被更改,包括 128 次插入0 次删除
  1. 2 0
      .gitignore
  2. 34 0
      Paintball.py
  3. 35 0
      PaintballTest.py
  4. 16 0
      README.md
  5. 1 0
      umbrella
  6. 40 0
      umbrella.py

+ 2 - 0
.gitignore

@ -0,0 +1,2 @@
1
.*coverage*
2
__pycache__/*

+ 34 - 0
Paintball.py

@ -0,0 +1,34 @@
1
"""
2
Simple class for the paintball marker.
3
"""
4
5
class Marker():
6
    """
7
    A paintball marker.
8
    """
9
10
    def __init__(self):
11
        self.ammo = 0
12
        self.co2 = 1.0
13
14
    def fire(self):
15
        # Check to see if we can even fire.
16
        if self.ammo == 0 or self.co2 == 0.0:
17
            return
18
19
        self.ammo -= 1
20
        self.co2 -= 0.01
21
22
    def semiBurst(self):
23
        for round in range(0, 3):
24
            self.fire()
25
26
    def fullBurst(self, seconds):
27
        for second in range(0, seconds):
28
            self.fire()
29
30
    def loadHopper(self, ammo):
31
        self.ammo += ammo
32
33
    def refillAir(self):
34
        self.co2 = 1.0

+ 35 - 0
PaintballTest.py

@ -0,0 +1,35 @@
1
"""
2
Simple test of the paintball marker.
3
"""
4
5
import unittest
6
from Paintball import Marker
7
8
class TestPaintball(unittest.TestCase):
9
    def setUp(self):
10
        self.marker = Marker()
11
12
    def test_fire(self):
13
        self.marker.loadHopper(1)
14
        self.marker.fire()
15
        self.assertEqual(0, self.marker.ammo)
16
17
    def test_semiBurst(self):
18
        self.marker.loadHopper(3)
19
        self.marker.semiBurst()
20
        self.assertEqual(0, self.marker.ammo)
21
22
    def test_fullBurst(self):
23
        self.marker.loadHopper(5)
24
        self.marker.fullBurst(4)
25
        self.assertEqual(1, self.marker.ammo)
26
27
        self.marker.fullBurst(10)
28
        self.assertEqual(0, self.marker.ammo)
29
30
    def test_refillAir(self):
31
        self.marker.refillAir()
32
        self.assertEqual(1.0, self.marker.co2)
33
34
if __name__ == "__main__": #pragma: no cover
35
    unittest.main()

+ 16 - 0
README.md

@ -0,0 +1,16 @@
1
Demonstration
2
=============
3
4
This is a brief demonstration of the [vim-umbrella](https://github.com/revolvingcow/vim-umbrella) ViM
5
plugin. The files `umbrella` and `umbrella.py` were pulled directly from the plugin examples folder.
6
7
Screencast
8
==========
9
10
A recorded session of this demonstration may be viewed on [YouTube](http://youtu.be/qL_fD8DOfh0).
11
12
Credits
13
=======
14
15
Screencast: Bryan Allred ([www.enderspsyche.com](http://enderspsyche.com))
16
Plugin: Revolving Cow, LLC ([www.revolvingcow.com](http://www.revolvingcow.com))

+ 1 - 0
umbrella

@ -0,0 +1 @@
1
python umbrella.py &> /dev/null

+ 40 - 0
umbrella.py

@ -0,0 +1,40 @@
1
#!/usr/bin/python
2
import coverage
3
import os
4
import unittest
5
6
# Store our output to the file
7
output = ""
8
9
# Start the coverage
10
cov = coverage.coverage()
11
cov.start()
12
13
# Dynamically get all the test cases we can find.
14
suite = unittest.TestSuite()
15
suite.addTests(unittest.TestLoader().discover(os.getcwd(), pattern="*.py"))
16
17
# Run the tests
18
unittest.TextTestRunner().run(suite)
19
20
# Stop coverage and save the stats
21
cov.stop()
22
cov.save()
23
24
# Iterate through the tested files
25
for source in cov.data.measured_files():
26
    for a in [cov.analysis2(source)]:
27
        output += "{0};{1};{2};{3};\n".format(
28
                a[0], 
29
                ",".join(str(x) for x in a[1]), 
30
                ",".join(str(x) for x in a[2]), 
31
                ",".join(str(x) for x in a[3]))
32
33
# Write the coverage report for umbrella
34
fileName = ".umbrella-coverage"
35
if os.path.isfile(fileName):
36
    os.remove(fileName)
37
38
f = open(fileName, "w")
39
f.write(output)
40
f.close()