summary refs log tree commit diff stats
path: root/tests/stdlib
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2015-04-25 20:23:09 +0200
committerAraq <rumpf_a@web.de>2015-04-25 23:17:00 +0200
commitd3fc6e1f285950d9cddb338206d553ff7baee7d5 (patch)
tree5fcbd5ff92b50e341ecfa722d2229b3327c549b2 /tests/stdlib
parent6725aa363426db74d44df29d74fca0ca6e227bbe (diff)
downloadNim-d3fc6e1f285950d9cddb338206d553ff7baee7d5.tar.gz
marshalling can be done at compile-time
Diffstat (limited to 'tests/stdlib')
-rw-r--r--tests/stdlib/tdialogs.nim17
1 files changed, 0 insertions, 17 deletions
diff --git a/tests/stdlib/tdialogs.nim b/tests/stdlib/tdialogs.nim
deleted file mode 100644
index f0203d319..000000000
--- a/tests/stdlib/tdialogs.nim
+++ /dev/null
@@ -1,17 +0,0 @@
-# Test the dialogs module
-
-import dialogs, gtk2
-
-gtk2.nimrod_init()
-
-var x = chooseFilesToOpen(nil)
-for a in items(x):
-  writeln(stdout, a)
-
-info(nil, "start with an info box")
-warning(nil, "now a warning ...")
-error(nil, "... and an error!")
-
-writeln(stdout, chooseFileToOpen(nil))
-writeln(stdout, chooseFileToSave(nil))
-writeln(stdout, chooseDir(nil))