(have, want)
| 867 | unformat = prep.unformat_identifiers |
| 868 | |
| 869 | def a_eq(have, want): |
| 870 | if have != want: |
| 871 | print("Wanted %s" % want) |
| 872 | print("Received %s" % have) |
| 873 | self.assert_(have == want) |
| 874 | |
| 875 | a_eq(unformat("foo"), ["foo"]) |
| 876 | a_eq(unformat('"foo"'), ["foo"]) |