nova/nova/tests
Sergey Nikitin b6d30549c6 Added hacking rule for assertTrue/False(A in B)
The following replacements were done in tests to have
clearer messages in case of failure:
- assertTrue(a in b) with assertIn(a, b)
- assertTrue(a not in b) with assertNotIn(a, b)
- assertFalse(a in b) with assertNotIn(a, b)

The error message would now be like:
   'abc' not in ['a', 'b', 'c']
rather than:
   'False is not True'.

Change-Id: I92d039731f17b731d302c35fb619300078b8a638
2015-01-07 12:25:53 +03:00
..
functional Nuke XML support from Nova REST API - Phase 3 2015-01-06 12:59:52 -05:00
unit Added hacking rule for assertTrue/False(A in B) 2015-01-07 12:25:53 +03:00
__init__.py move all tests to nova/tests/unit 2014-11-12 15:31:08 -05:00
fixtures.py extract RPC setup into a fixture 2014-12-18 15:52:20 -05:00