Skip to content

Commit 3045219

Browse files
committed
update docs
1 parent 7ce90cf commit 3045219

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/testing/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,9 +141,9 @@ <h1 id="testing">Testing</h1>
141141
and the application, so data isolation between tests is achieved through
142142
fast transaction rollback.</p>
143143
<p>You can see these capabilities in the examples:</p>
144-
<p><a href="https://github.com/krylosov-aa/context-async-sqlalchemy/blob/main/examples/fastapi_example/tests/transactional/__init__.py">Here are tests with a common transaction between the
144+
<p><a href="https://github.com/krylosov-aa/context-async-sqlalchemy/blob/main/examples/fastapi_example/tests/transactional">Here are tests with a common transaction between the
145145
application and the tests.</a></p>
146-
<p><a href="https://github.com/krylosov-aa/context-async-sqlalchemy/blob/main/examples/fastapi_example/tests/non_transactional/__init__.py">And here's an example with different transactions.</a></p>
146+
<p><a href="https://github.com/krylosov-aa/context-async-sqlalchemy/blob/main/examples/fastapi_example/tests/non_transactional">And here's an example with different transactions.</a></p>
147147
<h2 id="create-session-with-autorollback">Create session with autorollback</h2>
148148
<p><code>rollback_session</code> creates a session that always rolls back automatically.</p>
149149
<pre><code class="language-python">from context_async_sqlalchemy.test_utils import rollback_session

docs_sources/docs/testing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,10 @@ fast transaction rollback.
5454
You can see these capabilities in the examples:
5555

5656
[Here are tests with a common transaction between the
57-
application and the tests.](https://github.com/krylosov-aa/context-async-sqlalchemy/blob/main/examples/fastapi_example/tests/transactional/__init__.py)
57+
application and the tests.](https://github.com/krylosov-aa/context-async-sqlalchemy/blob/main/examples/fastapi_example/tests/transactional)
5858

5959

60-
[And here's an example with different transactions.](https://github.com/krylosov-aa/context-async-sqlalchemy/blob/main/examples/fastapi_example/tests/non_transactional/__init__.py)
60+
[And here's an example with different transactions.](https://github.com/krylosov-aa/context-async-sqlalchemy/blob/main/examples/fastapi_example/tests/non_transactional)
6161

6262

6363
## Create session with autorollback

0 commit comments

Comments
 (0)