示例#1
0
文件: test_flag.py 项目: aurule/npc
def test_append_marks_presence_true():
    tag = Flag('wanderer')
    tag.append('')
    assert tag.present
示例#2
0
文件: test_flag.py 项目: aurule/npc
 def test_update_from_flag_copies_data(self):
     copyable = Flag('wanderer')
     copyable.append('lost')
     tag = Flag('wanderer')
     tag.update(copyable)
     assert tag.data == ['lost']