summaryrefslogtreecommitdiff
path: root/test/sql/test_case_statement.py
Commit message (Collapse)AuthorAgeFilesLines
* - update the flake8 rules againMike Bayer2014-07-181-2/+2
| | | | - apply autopep8 + manual fixes to most of test/sql/
* PEP8 tidy of subset of test/sql/*.pypr/103Tony Locke2014-07-071-44/+65
|
* pg8000 passing test/sqlTony Locke2014-07-061-8/+12
|
* - remove informix dialect, moved out to ↵Mike Bayer2013-11-171-2/+0
| | | | | | https://bitbucket.org/zzzeek/sqlalchemy_informixdb - remove informix, maxdb, access symbols from tests etc.
* trying different approaches to test layout. in this one, the testing modulesMike Bayer2012-09-271-2/+3
| | | | | | | 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.
* - got firebird runningMike Bayer2012-09-231-6/+14
| | | | | | | | | | | | - add some failure cases - [bug] Firebird now uses strict "ansi bind rules" so that bound parameters don't render in the columns clause of a statement - they render literally instead. - [bug] Support for passing datetime as date when using the DateTime type with Firebird; other dialects support this.
* - remove test.sql._base, test.engine._base, test.orm._base, move those ↵Mike Bayer2011-03-271-1/+1
| | | | | | | classes to a new test.lib.fixtures module - move testing.TestBase to test.lib.fixtures - massive search and replace
* make it more explicit in tests which dialect we want to use for thingsMike Bayer2011-02-111-0/+1
|
* - whitespace removal bonanzaMike Bayer2011-01-021-9/+9
|
* - move sqlalchemy.test to test.libMike Bayer2010-11-151-2/+2
|
* - rewrote the "connections" sectionMike Bayer2010-09-051-4/+4
| | | | | | | | | - improved pool docs - typos etc. - ClauseElement.execute() and scalar() make no sense - these are depreacted. The official home is Executable. - alias() is not executable, allowing it is sloppy so this goes under the deprecated umbrella
* - the text() construct, if placed in a columnMike Bayer2010-08-031-2/+20
| | | | | | | | oriented situation, will at least return NULLTYPE for its type instead of None, allowing it to be used a little more freely for ad-hoc column expressions than before. literal_column() is still the better choice, however.
* - unit tests have been migrated from unittest to nose.Mike Bayer2009-06-101-0/+137
See README.unittests for information on how to run the tests. [ticket:970]