(self, connection)
| 2086 | |
| 2087 | @testing.fails_if(testing.requires._has_mysql_on_windows) |
| 2088 | def test_table_names(self, connection): |
| 2089 | x = inspect(connection).get_table_names() |
| 2090 | assert {"SomeTable", "SomeOtherTable"}.issubset(x) |
| 2091 | |
| 2092 | def test_reflect_exact_name(self, connection): |
| 2093 | m = MetaData() |
nothing calls this directly
no test coverage detected