From 48b9d4dae3d1ca6ff39e71571a6db3a43497c9f9 Mon Sep 17 00:00:00 2001 From: Adam Chlipala Date: Thu, 11 Sep 2008 17:41:52 -0400 Subject: Crud listing IDs --- tests/crud1.ur | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 tests/crud1.ur (limited to 'tests/crud1.ur') diff --git a/tests/crud1.ur b/tests/crud1.ur new file mode 100644 index 00000000..2253d459 --- /dev/null +++ b/tests/crud1.ur @@ -0,0 +1,14 @@ +table t1 : {Id : int, A : int, B : string, C : float, D : bool} + +open Crud.Make(struct + val tab = t1 + + val title = "Crud1" + + val cols = { + A = {Show = txt _}, + B = {Show = txt _}, + C = {Show = txt _}, + D = {Show = txt _} + } +end) -- cgit v1.2.3