def test_repr(self):
     x = State()
     self.assertTrue(repr(x))
     x.filtered = 'foo'
     self.assertTrue(repr(x))
示例#2
0
 def test_repr(self):
     x = State()
     assert repr(x)
     x.filtered = "foo"
     assert repr(x)
示例#3
0
 def test_repr(self):
     x = State()
     self.assertTrue(repr(x))
     x.filtered = 'foo'
     self.assertTrue(repr(x))
示例#4
0
 def test_repr(self):
     x = State()
     assert repr(x)
     x.filtered = 'foo'
     assert repr(x)