congress/src/policy/tests/test_compiler.py

20 lines
321 B
Python

# Copyright (c) 2013 VMware, Inc. All rights reserved.
#
import unittest
from policy import CongressParser
class TestCompiler(unittest.TestCase):
def setUp(self):
pass
def test_foo(self):
self.assertTrue("a" in "abc", "'a' is a substring of 'abc'")
if __name__ == '__main__':
unittest.main()