955d9088cba9db373953a934c0e8f7060244a856
Inspired by Dave Chen's change request on keystone about this, I decided to check in cinder code to see if there were many cases. Since unittest provides assertTrue and assertFalse, it is better to use assertTrue(var) instead of assertEqual(True, var) and the same thing applies to assertFalse. I used these commands to search the occurrences: * grep -PRIn "assertEqual\(True" * grep -PRIn "assertEqual\(False" * grep -PRIn "assertEqual\(\w+\s*,\s*True" * grep -PRIn "assertEqual\(\w+\s*,\s*False" Closes-Bug: #1430262 Change-Id: Ie92ce744d68a473b9ecc5214ed322bf2c5f5e000
CINDER
You have come across a storage service for an open cloud computing service. It has identified itself as Cinder. It was abstracted from the Nova project.
- Wiki: http://wiki.openstack.org/Cinder
- Developer docs: http://docs.openstack.org/developer/cinder
Getting Started
If you'd like to run from the master branch, you can clone the git repo:
git clone https://github.com/openstack/cinder.git
For developer information please see HACKING.rst
You can raise bugs here http://bugs.launchpad.net/cinder
Python client
Description