Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/tests/postgres_tests/test_ranges.py
Commit message (Collapse)AuthorAgeFilesLines
* Fixed #23395 -- Limited line lengths to 119 characters.Dražen Odobašić2015-09-121-1/+2
|
* Switch to aware datetimes in test.Matthew Somerville2015-06-061-4/+4
|
* Instead of using DjangoJSONEncoder, use base_field's ↵Matthew Somerville2015-06-061-1/+1
| | | | | | | | | value_to_string. Note this means the serialization of e.g. IntegerRangeField now has strings for lower and upper, so use to_python when they came back in (same behaviour as ArrayField, hopefully, from where I also got the set_attributes_from_name function).
* Fixed #24937 -- fix serialization of Date(Time)RangeField.Matthew Somerville2015-06-051-5/+16
| | | | | Use the DjangoJSONEncoder so that datetime and date are encoded appropriately.
* Fixed #24837 -- field__contained_by=RangeMarc Tamlyn2015-06-041-1/+92
| | | | | | | | Provide `contained_by` lookups for the equivalent single valued fields related to the range field types. This acts as the opposite direction to rangefield__contains. With thanks to schinckel for the idea and initial tests.
* Name PostgreSQL correctly.Marc Tamlyn2015-05-311-4/+4
|
* Fixed #24841 -- Made BaseRangeField.prepare_value() call ↵Villiers Strauss2015-05-251-1/+9
| | | | base_field's prepare_value()
* Fixed #24714 -- Used more specific assertions than ↵Alasdair Nicol2015-04-281-1/+1
| | | | assertEqual in tests.
* Stopped special-casing postgres-specific testsClaude Paroz2015-04-181-10/+17
| | | | Refs #23879.
* Fixed #24341 -- Added specific error messages to ↵foresmac2015-02-201-7/+124
| | | | RangeField subclasses
* Fixed #24290 -- Skipped postgres_tests if not running ↵Tim Graham2015-02-171-2/+0
| | | | with PostgreSQL.
* Sorted imports with isort; refs #23860.Tim Graham2015-02-061-4/+6
|
* Fixed #24170 -- Implemented decompress for ↵Ng Zhi An2015-01-221-0/+21
| | | | BaseRangeField widgets
* Fixed #24001 -- Added range fields for PostgreSQL.Marc Tamlyn2015-01-101-0/+376
Added support for PostgreSQL range types to contrib.postgres. - 5 new model fields - 4 new form fields - New validators - Uses psycopg2's range type implementation in python