Removing non-ascii logging test for now

This commit is contained in:
James Cammarata 2014-02-20 12:48:16 -05:00
parent 010e145efa
commit 701af19fad

View file

@ -392,21 +392,21 @@ class TestPlaybook(unittest.TestCase):
assert utils.jsonify(expected, format=True) == utils.jsonify(actual,format=True)
def test_playbook_logging_non_ascii(self):
pb = 'test/playbook-logging-non-ascii.yml'
actual = self._run(pb)
expected = {
"localhost": {
"changed": 3,
"failures": 0,
"ok": 3,
"skipped": 0,
"unreachable": 0
}
}
assert utils.jsonify(expected, format=True) == utils.jsonify(actual, format=True)
#def test_playbook_logging_non_ascii(self):
# pb = 'test/playbook-logging-non-ascii.yml'
# actual = self._run(pb)
#
# expected = {
# "localhost": {
# "changed": 3,
# "failures": 0,
# "ok": 3,
# "skipped": 0,
# "unreachable": 0
# }
# }
#
# assert utils.jsonify(expected, format=True) == utils.jsonify(actual, format=True)
# Disabled for now as there are permissions issues that happen if you are not the owner that created files