aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/t_t.ur3
-rw-r--r--tests/t_t.urp5
2 files changed, 8 insertions, 0 deletions
diff --git a/tests/t_t.ur b/tests/t_t.ur
new file mode 100644
index 00000000..9e38a30d
--- /dev/null
+++ b/tests/t_t.ur
@@ -0,0 +1,3 @@
+table t : {A : int}
+
+task initialize = fn () => dml (UPDATE t SET A = A + 1 WHERE TRUE)
diff --git a/tests/t_t.urp b/tests/t_t.urp
new file mode 100644
index 00000000..12e96e39
--- /dev/null
+++ b/tests/t_t.urp
@@ -0,0 +1,5 @@
+dbms sqlite
+database /tmp/test
+sql t_t.sql
+
+t_t