Merge "Hide warning for old style attribute schema test"

This commit is contained in:
Jenkins 2014-06-23 14:45:44 +00:00 committed by Gerrit Code Review
commit 7d7621bbec

View File

@ -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):