| OLD | NEW |
| 1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
| 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 | 5 |
| 6 """Tests for count_ifdefs. | 6 """Tests for count_ifdefs. |
| 7 """ | 7 """ |
| 8 | 8 |
| 9 import os | 9 import os |
| 10 import unittest | 10 import unittest |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 count = count_ifdefs.CountIfdefs('OS_[A-Z]+', self.root) | 21 count = count_ifdefs.CountIfdefs('OS_[A-Z]+', self.root) |
| 22 self.failUnless(count == 6) | 22 self.failUnless(count == 6) |
| 23 | 23 |
| 24 def testSkipTests(self): | 24 def testSkipTests(self): |
| 25 count = count_ifdefs.CountIfdefs('OS_[A-Z]+', self.root, True) | 25 count = count_ifdefs.CountIfdefs('OS_[A-Z]+', self.root, True) |
| 26 self.failUnless(count == 4) | 26 self.failUnless(count == 4) |
| 27 | 27 |
| 28 | 28 |
| 29 if __name__ == '__main__': | 29 if __name__ == '__main__': |
| 30 unittest.main() | 30 unittest.main() |
| OLD | NEW |