We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a5160a commit 768d557Copy full SHA for 768d557
mysql_mimic/version.py
@@ -1,6 +1,6 @@
1
"""mysql-mimic version information"""
2
3
-__version__ = "2.6.3"
+__version__ = "2.6.4"
4
5
6
def main(name: str) -> None:
tests/test_variables.py
@@ -34,6 +34,7 @@ def test_parse_timezone() -> None:
34
def test_variable_mapping() -> None:
35
test_vars = TestVars()
36
assert test_vars
37
+ assert len(test_vars) == 1
38
39
assert test_vars.get_variable("foo") == "bar"
40
assert test_vars["foo"] == "bar"
0 commit comments