Hide warning for old style attribute schema test
Change-Id: I6a3d0464bffe65f8ef7ab9006882cbeaa03cc20d
This commit is contained in:
parent
fcf2504835
commit
4660f09571
@ -11,6 +11,7 @@
|
||||
# License for the specific language governing permissions and limitations
|
||||
# under the License.
|
||||
|
||||
import mock
|
||||
import testtools
|
||||
|
||||
from heat.engine import attributes
|
||||
@ -59,11 +60,12 @@ class AttributeSchemaTest(testtools.TestCase):
|
||||
attrs._attributes['bar_dep'].support_status().message)
|
||||
|
||||
def test_old_attribute_schema_format(self):
|
||||
s = 'Test description.'
|
||||
self.assertIsInstance(attributes.Schema.from_attribute(s),
|
||||
attributes.Schema)
|
||||
self.assertEqual('Test description.',
|
||||
attributes.Schema.from_attribute(s).description)
|
||||
with mock.patch('heat.engine.attributes.warnings'):
|
||||
s = 'Test description.'
|
||||
self.assertIsInstance(attributes.Schema.from_attribute(s),
|
||||
attributes.Schema)
|
||||
self.assertEqual('Test description.',
|
||||
attributes.Schema.from_attribute(s).description)
|
||||
|
||||
|
||||
class AttributeTest(common.HeatTestCase):
|
||||
|
Loading…
Reference in New Issue
Block a user