~ubuntu-branches/debian/sid/sqlalchemy/sid

« back to all changes in this revision

Viewing changes to test/orm/test_selectable.py

  • Committer: Bazaar Package Importer
  • Author(s): Piotr Ożarowski
  • Date: 2011-10-18 00:02:50 UTC
  • mfrom: (1.4.16 upstream)
  • Revision ID: james.westby@ubuntu.com-20111018000250-prowqcleosluapxg
Tags: 0.7.3-2
remove build-indep from build target's dependencies (closes: 645697)

Show diffs side-by-side

added added

removed removed

Lines of Context:
60
60
 
61
61
        subset_select = select([common.c.id, common.c.data]).alias()
62
62
        subset_mapper = mapper(Subset, subset_select)
63
 
 
64
63
        sess = Session(bind=testing.db)
65
64
        sess.add(Subset(data=1))
66
65
        sess.flush()