blob: 9f09702f8c4e37e6f52ff908c71872054d9f7368 [file] [log] [blame]
import sys
import unittest
import pricetag_pb2
class TestCase(unittest.TestCase):
def test_pricetag(self):
got = pricetag_pb2.PriceTag(
name="dollar",
cost=5.00,
)
self.assertIsNotNone(got)
if __name__ == "__main__":
unittest.main()