File: tools.py

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


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