generated from devcontainers/feature-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6f9b85f
commit 9c74266
Showing
7 changed files
with
169 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/bin/bash | ||
|
||
# Test a plain install of VIM, version 8.2 | ||
|
||
set -e | ||
|
||
source dev-container-features-test-lib | ||
|
||
check "vim version" vim --version | ||
|
||
# Report result | ||
# If any of the checks above exited with a non-zero exit code, the test will fail. | ||
reportResults |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/bin/bash | ||
|
||
# Test an installation of VIM with LUA. | ||
|
||
set -e | ||
|
||
source dev-container-features-test-lib | ||
|
||
check "vim version" vim --version | ||
|
||
# Report result | ||
# If any of the checks above exited with a non-zero exit code, the test will fail. | ||
reportResults |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/bin/bash | ||
|
||
# Test a plain install of VIM, no added options. | ||
|
||
set -e | ||
|
||
source dev-container-features-test-lib | ||
|
||
check "vim version" vim --version | ||
|
||
# Report result | ||
# If any of the checks above exited with a non-zero exit code, the test will fail. | ||
reportResults |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/bin/bash | ||
|
||
# Test an installation of VIM with Python. | ||
|
||
set -e | ||
|
||
source dev-container-features-test-lib | ||
|
||
check "vim version" vim --version | ||
|
||
# Report result | ||
# If any of the checks above exited with a non-zero exit code, the test will fail. | ||
reportResults |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
{ | ||
"plain": { | ||
"image": "ubuntu", | ||
"features": { | ||
"vimsrc": { | ||
"version": "9.1.0327" | ||
} | ||
} | ||
}, | ||
"lua": { | ||
"image": "ubuntu", | ||
"features": { | ||
"vimsrc": { | ||
"version": "9.1.0327", | ||
"enable_lua": true | ||
} | ||
} | ||
}, | ||
"python": { | ||
"image": "ubuntu", | ||
"features": { | ||
"vimsrc": { | ||
"version": "9.1.0327", | ||
"enable_python3": true | ||
} | ||
} | ||
}, | ||
"eight": { | ||
"image": "ubuntu", | ||
"features": { | ||
"vimsrc": { | ||
"version": "8.2.5172" | ||
} | ||
} | ||
} | ||
} |