diff options
author | Thomas Wienecke <wienecke.t@gmail.com> | 2014-03-05 02:18:23 +0100 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-03-05 15:01:19 -0300 |
commit | fafdad2f95f4104374056ce2affe59a8098bb3fa (patch) | |
tree | fd8b80c1bb3a2860c1a2f4ad75c34fa130cd9f62 | |
parent | 8bb672e6a088eb77d98d182bd46551986b52eb49 (diff) | |
download | rneovim-fafdad2f95f4104374056ce2affe59a8098bb3fa.tar.gz rneovim-fafdad2f95f4104374056ce2affe59a8098bb3fa.tar.bz2 rneovim-fafdad2f95f4104374056ce2affe59a8098bb3fa.zip |
Implement pending test.
-rw-r--r-- | test/unit/os_unix.moon | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/test/unit/os_unix.moon b/test/unit/os_unix.moon index abc7656349..35467b2971 100644 --- a/test/unit/os_unix.moon +++ b/test/unit/os_unix.moon @@ -74,10 +74,8 @@ describe 'os_unix function', -> it 'returns false when given a regular file without executable bit set', -> -- This is a critical test since Windows does not have any executable -- bit. Thus executable_file returns TRUE on every regular file on - -- Windows. This test must probably differentiate between Windows and - -- other systems, which have an executable bit. - pending 'Test executable_file with a regular file which is not - executable. Need a solution which also works on Windows.' + -- Windows and this test will fail. + eq FALSE, (executable_file 'unit-test-directory/test.file') describe 'mch_can_exe', -> mch_can_exe = (name) -> |