summaryrefslogtreecommitdiffstats
path: root/tests/test_pickle.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_pickle.py')
-rw-r--r--tests/test_pickle.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/test_pickle.py b/tests/test_pickle.py
new file mode 100644
index 0000000..b0f6bcf
--- /dev/null
+++ b/tests/test_pickle.py
@@ -0,0 +1,6 @@
+import pickle
+
+
+def test_environment(env):
+ env = pickle.loads(pickle.dumps(env))
+ assert env.from_string("x={{ x }}").render(x=42) == "x=42"