Current Path: > > opt > cloudlinux > venv > lib64 > python3.11 > site-packages > sqlalchemy > testing > suite
Operation : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 Software : Apache Server IP : 162.0.232.56 | Your IP: 216.73.216.111 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
__pycache__ | Directory | - | - | |
__init__.py | File | 358 bytes | April 17 2025 13:10:58. | |
test_cte.py | File | 6801 bytes | April 17 2025 13:10:58. | |
test_ddl.py | File | 9064 bytes | April 17 2025 13:10:58. | |
test_dialect.py | File | 6860 bytes | April 17 2025 13:10:58. | |
test_insert.py | File | 9672 bytes | April 17 2025 13:10:58. | |
test_reflection.py | File | 48391 bytes | April 17 2025 13:10:58. | |
test_results.py | File | 10971 bytes | April 17 2025 13:10:58. | |
test_select.py | File | 24393 bytes | April 17 2025 13:10:58. | |
test_sequence.py | File | 6972 bytes | April 17 2025 13:10:58. | |
test_types.py | File | 37161 bytes | April 17 2025 13:10:58. | |
test_update_delete.py | File | 1491 bytes | April 17 2025 13:10:58. |
from .. import config from .. import fixtures from ..assertions import eq_ from ..schema import Column from ..schema import Table from ... import Integer from ... import String class SimpleUpdateDeleteTest(fixtures.TablesTest): run_deletes = "each" __backend__ = True @classmethod def define_tables(cls, metadata): Table( "plain_pk", metadata, Column("id", Integer, primary_key=True), Column("data", String(50)), ) @classmethod def insert_data(cls, connection): connection.execute( cls.tables.plain_pk.insert(), [ {"id": 1, "data": "d1"}, {"id": 2, "data": "d2"}, {"id": 3, "data": "d3"}, ], ) def test_update(self): t = self.tables.plain_pk r = config.db.execute(t.update().where(t.c.id == 2), data="d2_new") assert not r.is_insert assert not r.returns_rows eq_( config.db.execute(t.select().order_by(t.c.id)).fetchall(), [(1, "d1"), (2, "d2_new"), (3, "d3")], ) def test_delete(self): t = self.tables.plain_pk r = config.db.execute(t.delete().where(t.c.id == 2)) assert not r.is_insert assert not r.returns_rows eq_( config.db.execute(t.select().order_by(t.c.id)).fetchall(), [(1, "d1"), (3, "d3")], ) __all__ = ("SimpleUpdateDeleteTest",)
SILENT KILLER Tool