e505b49181
assertEqual method's arguments should be in ('expected', 'actual') order. Change-Id: Id591629a10e6e82c4eb607a9994071f16dd80d8b Partial-Bug: #1277104
39 lines
891 B
ReStructuredText
39 lines
891 B
ReStructuredText
Keystone Style Commandments
|
|
===========================
|
|
|
|
- Step 1: Read the OpenStack Style Commandments
|
|
http://docs.openstack.org/developer/hacking/
|
|
- Step 2: Read on
|
|
|
|
Keystone Specific Commandments
|
|
------------------------------
|
|
|
|
- Avoid using "double quotes" where you can reasonably use 'single quotes'
|
|
|
|
|
|
TODO vs FIXME
|
|
-------------
|
|
|
|
- TODO(name): implies that something should be done (cleanup, refactoring,
|
|
etc), but is expected to be functional.
|
|
- FIXME(name): implies that the method/function/etc shouldn't be used until
|
|
that code is resolved and bug fixed.
|
|
|
|
|
|
Logging
|
|
-------
|
|
|
|
Use the common logging module, and ensure you ``getLogger``::
|
|
|
|
from keystone.openstack.common import log
|
|
|
|
LOG = log.getLogger(__name__)
|
|
|
|
LOG.debug('Foobar')
|
|
|
|
|
|
AssertEqual argument order
|
|
--------------------------
|
|
|
|
assertEqual method's arguments should be in ('expected', 'actual') order.
|