diff options
author | Stefan Hoffmann <stefan991@gmail.com> | 2014-03-25 15:41:15 +0100 |
---|---|---|
committer | Stefan Hoffmann <stefan991@gmail.com> | 2014-03-25 15:41:15 +0100 |
commit | 7d413050ba01229fd54d087c23777b26011c258f (patch) | |
tree | d8745408b2eadfaf3e317bdbb171f411cae9bb26 | |
parent | 32f118a47f108e4dc26fbea6afce9648ba610079 (diff) | |
download | rneovim-7d413050ba01229fd54d087c23777b26011c258f.tar.gz rneovim-7d413050ba01229fd54d087c23777b26011c258f.tar.bz2 rneovim-7d413050ba01229fd54d087c23777b26011c258f.zip |
fix mch_delay() unittest
-rw-r--r-- | test/unit/os/time.moon | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/unit/os/time.moon b/test/unit/os/time.moon index 76ad86b799..e963f6e253 100644 --- a/test/unit/os/time.moon +++ b/test/unit/os/time.moon @@ -4,6 +4,9 @@ time = cimport './src/os/time.h' describe 'time function', -> + setup -> + time.time_init! + describe 'mch_delay', -> mch_delay = (ms) -> time.mch_delay ms, false |