(self)
| 804 | ) |
| 805 | |
| 806 | def test_cant_parse_str(self): |
| 807 | with expect_raises_message( |
| 808 | exc.ArgumentError, |
| 809 | r"^Could not parse SQLAlchemy URL from given URL string$", |
| 810 | ): |
| 811 | create_engine("notarealurl") |
| 812 | |
| 813 | def test_urlattr(self): |
| 814 | """test the url attribute on ``Engine``.""" |
nothing calls this directly
no test coverage detected