attrs/tests
Andy Freeland a6cf2d5637 Fix unbound __str__ on Python 2 when slots=True (#199)
Previously:

```pycon
>>> import attr
>>> @attr.s(str=True, slots=True)
... class A(object):
...     a = attr.ib()
...
>>> a = A(1)
>>> str(a)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: unbound method repr_() must be called with A instance as first argument (got nothing instead)
```

Fixes #198.
2017-06-01 09:30:31 +02:00
..
__init__.py Move test helpers into an utils module 2016-08-15 15:27:13 +02:00
test_config.py Check type of set_run_validators' arg 2015-06-05 20:28:50 +02:00
test_converters.py Allow optional conversion (#173) 2017-05-10 15:37:50 +02:00
test_dark_magic.py Compatibility fixes. (#193) 2017-05-19 11:31:00 -07:00
test_dunders.py Fix unbound __str__ on Python 2 when slots=True (#199) 2017-06-01 09:30:31 +02:00
test_filters.py Stop using deprecated APIs (#86) 2016-09-10 19:14:34 +02:00
test_funcs.py Fix evolve (cont) (#182) 2017-05-04 13:20:39 +02:00
test_make.py Add takes_self to Factory and @_CountingAttr.default (#189) 2017-05-16 09:36:39 +02:00
test_slots.py Fix hashing behavior (#142) 2017-02-19 09:51:43 +01:00
test_validators.py Compatibility fixes. (#193) 2017-05-19 11:31:00 -07:00
utils.py Compatibility fixes. (#193) 2017-05-19 11:31:00 -07:00