blob: c5176555af3516448e064d8ad8273c34e975cc6e [file] [log] [blame]
Neels Hofmeyr3531a192017-03-28 14:30:28 +02001#!/usr/bin/env python3
2import _prep
3
4from osmo_gsm_tester.util import hash_obj
5
6print('- expect the same hashes on every test run')
7print(hash_obj('abc'))
8print(hash_obj(1))
9print(hash_obj([1, 2, 3]))
10print(hash_obj({ 'k': [ {'a': 1, 'b': 2}, {'a': 3, 'b': 4}, ],
11 'i': [ {'c': 1, 'd': 2}, {'c': 3, 'd': 4}, ] }))
12