Skip to content

Instantly share code, notes, and snippets.

@cournape
Created September 23, 2013 15:20
Show Gist options
  • Save cournape/6672055 to your computer and use it in GitHub Desktop.
Save cournape/6672055 to your computer and use it in GitHub Desktop.
assert multiline equal not working
import unittest
a = """
asd
"""
b = """
laskj
"""
class TestFoo(unittest.TestCase):
def test_simple(self):
#self.assertMultiLineEqual(a, b)
self.assertEqual(a, b)
if __name__ == "__main__":
unittest.main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment