nova/nova/tests/unit/test_uuid_sentinels.py
bhagyashris 046f34290d Fix invalid import order
Made corrections in import order as per OpenStack import standards [1].

[1] http://docs.openstack.org/developer/hacking/#import-order-template

TrivialFix

Change-Id: Ieb63c7fc5becc68db8d68b3e6847321e77ceeed3
2016-07-04 16:24:10 +05:30

30 lines
1022 B
Python

# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
from oslo_utils import uuidutils
import testtools
from nova.tests import uuidsentinel
class TestUUIDSentinels(testtools.TestCase):
def test_different_sentinel(self):
uuid1 = uuidsentinel.foobar
uuid2 = uuidsentinel.barfoo
self.assertNotEqual(uuid1, uuid2)
def test_returns_uuid(self):
self.assertTrue(uuidutils.is_uuid_like(uuidsentinel.foo))
def test_returns_string(self):
self.assertIsInstance(uuidsentinel.foo, str)