First pass at MySQL client tests. This one adds a test for the native python MySQL client. The native python MySQL client does not use the C connection library instead connecting to MySQL using the DB API v2.0 specification (PEP-249)

This commit is contained in:
Timothy Sehn
2020-08-24 14:45:29 -07:00
parent eebe80a512
commit cad7be531e
3 changed files with 84 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
@test "make sure this works" {
echo "poop"
}