summaryrefslogtreecommitdiff
path: root/test/sql/test_unicode.py
Commit message (Collapse)AuthorAgeFilesLines
* fix [ticket:2868] some moreMike Bayer2013-11-211-2/+4
|
* - Fixed a regression caused by :ticket:`2812` where the repr() forMike Bayer2013-11-211-1/+13
| | | | | table and column names would fail if the name contained non-ascii characters. [ticket:2868]
* - unicode literals need to just be handled differently if they have utf-8Mike Bayer2013-05-041-40/+41
| | | | | encoded in them vs. unicode escaping. not worth figuring out how to combine these right now
* - the raw 2to3 runMike Bayer2013-04-271-40/+40
| | | | - went through examples/ and cleaned out excess list() calls
* trying different approaches to test layout. in this one, the testing modulesMike Bayer2012-09-271-3/+4
| | | | | | | become an externally usable package but still remains within the main sqlalchemy parent package. in this system, we use kind of an ugly hack to get the noseplugin imported outside of the "sqlalchemy" package, while still making it available within sqlalchemy for usage by third party libraries.
* -whitespace bonanza, contdMike Bayer2012-07-281-1/+1
|
* - remove test.sql._base, test.engine._base, test.orm._base, move those ↵Mike Bayer2011-03-271-3/+4
| | | | | | | classes to a new test.lib.fixtures module - move testing.TestBase to test.lib.fixtures - massive search and replace
* - whitespace removal bonanzaMike Bayer2011-01-021-2/+2
|
* - move sqlalchemy.test to test.libMike Bayer2010-11-151-2/+2
|
* do a check on this one to fix the buildbotMike Bayer2010-04-161-2/+2
|
* - DefaultRunner and subclasses have been removed. The jobMike Bayer2009-10-151-1/+1
| | | | | | | of this object has been simplified and moved into ExecutionContext. Dialects which support sequences should add a `fire_sequence()` method to their execution context implementation. [ticket:1566]
* merge 0.6 series to trunk.Mike Bayer2009-08-061-2/+3
|
* - unit tests have been migrated from unittest to nose.Mike Bayer2009-06-101-0/+138
See README.unittests for information on how to run the tests. [ticket:970]