Python code coverage for Lib/packaging/tests/fake_dists/choxie-2.0.0.9/choxie/chocolate.py
| # | count | content |
|---|---|---|
| 1 | n/a | # -*- coding: utf-8 -*- |
| 2 | n/a | from towel_stuff import Towel |
| 3 | n/a | |
| 4 | n/a | class Chocolate(object): |
| 5 | n/a | """A piece of chocolate.""" |
| 6 | n/a | |
| 7 | n/a | def wrap_with_towel(self): |
| 8 | n/a | towel = Towel() |
| 9 | n/a | towel.wrap(self) |
| 10 | n/a | return towel |
