diff options
author | Adam Chlipala <adam@chlipala.net> | 2014-09-20 13:55:25 -0400 |
---|---|---|
committer | Adam Chlipala <adam@chlipala.net> | 2014-09-20 13:55:25 -0400 |
commit | a167f651f6a12eab4772ab3cb16b63633e8c77ae (patch) | |
tree | 5ced1f7db6e337204ab34d54dc653437ef53af38 /tests | |
parent | 5d2d4930568267b0e205ece3d4908cdc7ff715a1 (diff) |
Default to parsing time strings with the application-configured format
Diffstat (limited to 'tests')
-rw-r--r-- | tests/timeRoundTrip.ur | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/timeRoundTrip.ur b/tests/timeRoundTrip.ur new file mode 100644 index 00000000..d20e61e8 --- /dev/null +++ b/tests/timeRoundTrip.ur @@ -0,0 +1,3 @@ +fun main () : transaction page = + t <- now; + return <xml>{[readError (show t) : time]}</xml> |