~ubuntu-branches/debian/jessie/sqlalchemy/jessie

« back to all changes in this revision

Viewing changes to test/orm/inheritance/test_productspec.py

  • Committer: Package Import Robot
  • Author(s): Piotr Ożarowski, Jakub Wilk, Piotr Ożarowski
  • Date: 2013-07-06 20:53:52 UTC
  • mfrom: (1.4.23) (16.1.17 experimental)
  • Revision ID: package-import@ubuntu.com-20130706205352-ryppl1eto3illd79
Tags: 0.8.2-1
[ Jakub Wilk ]
* Use canonical URIs for Vcs-* fields.

[ Piotr Ożarowski ]
* New upstream release
* Upload to unstable
* Build depend on python3-all instead of -dev, extensions are not built for
  Python 3.X 

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
from sqlalchemy import *
3
3
from sqlalchemy.orm import *
4
4
 
5
 
from test.lib import testing
6
 
from test.lib import fixtures
7
 
from test.lib.schema import Table, Column
 
5
from sqlalchemy import testing
 
6
from sqlalchemy.testing import fixtures
 
7
from sqlalchemy.testing.schema import Table, Column
8
8
 
9
9
class InheritTest(fixtures.MappedTest):
10
10
    """tests some various inheritance round trips involving a particular set of polymorphic inheritance relationships"""