File: tools.py

package info (click to toggle)
python-jq 1.10.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 200 kB
  • sloc: python: 439; makefile: 26; sh: 6
file content (6 lines) | stat: -rw-r--r-- 131 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
def assert_equal(expected, actual):
    assert expected == actual


def assert_is(expected, actual):
    assert expected is actual