~ubuntu-branches/ubuntu/utopic/python-heatclient/utopic

« back to all changes in this revision

Viewing changes to heatclient/tests/test_environment_format.py

  • Committer: Package Import Robot
  • Author(s): Chuck Short, Chuck Short, Liam Young
  • Date: 2014-07-24 11:48:17 UTC
  • mfrom: (1.1.6)
  • Revision ID: package-import@ubuntu.com-20140724114817-fadaznu1t65uaj5r
Tags: 0.2.10-0ubuntu1
[ Chuck Short ]
* debian/control: Add python-httpretty.
* debian/patches/skip-ubuntu-tests.patch: Skip failing test.

[ Liam Young ]
* debian/control: Merged in deps from requirements.txt

Show diffs side-by-side

added added

removed removed

Lines of Context:
56
56
        self.assertIn(expect, str(e))
57
57
 
58
58
    def test_parse_document(self):
59
 
        env = '["foo" , "bar"]'
 
59
        env = '["foo", "bar"]'
60
60
        expect = 'The environment is not a valid YAML mapping data type.'
61
61
        e = self.assertRaises(ValueError, environment_format.parse, env)
62
62
        self.assertIn(expect, str(e))