blob: 25fb551c912bd48d313bd67129a2147b84757f7b [file] [log] [blame]
Neels Hofmeyrb3daaea2017-04-09 14:18:34 +02001#!/usr/bin/env python3
2
3import _prep
4from osmo_gsm_tester import ofono_client
5
6print(ofono_client.Sms())
7print(ofono_client.Sms())
8print(ofono_client.Sms())
9sms = ofono_client.Sms('123', '456')
10print(str(sms))
11
12sms2 = ofono_client.Sms('123', '456')
13print(str(sms2))
14assert sms != sms2
15
16sms2.msg = str(sms.msg)
17print(str(sms2))
18assert sms == sms2
19
20# vim: expandtab tabstop=4 shiftwidth=4