diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-01-24 19:18:55 +0000 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-01-24 19:18:55 +0000 |
commit | 20a9cd801344c689b66ff4ee9ff9b92442878f22 (patch) | |
tree | b5ba1449dfb4a6fe6cd1ab9697cc57034baeee2e /test/sql/test_generative.py | |
parent | f20102829e4280cd9c35d40e32e22729ef520b0d (diff) | |
download | sqlalchemy-20a9cd801344c689b66ff4ee9ff9b92442878f22.tar.gz |
not ready to put execution_options in the text()/select() constructors yet
Diffstat (limited to 'test/sql/test_generative.py')
-rw-r--r-- | test/sql/test_generative.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/test/sql/test_generative.py b/test/sql/test_generative.py index 893f2abd7..c31a24b93 100644 --- a/test/sql/test_generative.py +++ b/test/sql/test_generative.py @@ -795,15 +795,17 @@ class SelectTest(TestBase, AssertsCompiledSQL): assert s2._execution_options == dict(foo='bar', bar='baz') assert s3._execution_options == dict(foo='not bar') - def test_execution_options_in_kwargs(self): + # this feature not available yet + def _NOTYET_test_execution_options_in_kwargs(self): s = select(execution_options=dict(foo='bar')) s2 = s.execution_options(bar='baz') # The original select should not be modified. assert s._execution_options == dict(foo='bar') # s2 should have its execution_options based on s, though. assert s2._execution_options == dict(foo='bar', bar='baz') - - def test_execution_options_in_text(self): + + # this feature not available yet + def _NOTYET_test_execution_options_in_text(self): s = text('select 42', execution_options=dict(foo='bar')) assert s._execution_options == dict(foo='bar') |