Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
devcontainer-features
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
eazydevelop-devcontainer-temp
devcontainer-features
Commits
c04da738
Commit
c04da738
authored
May 25, 2022
by
Josh Spicer
Committed by
GitHub
May 25, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix crazy test.sh formatting
parent
a4d434f2
Changes
18
Show whitespace changes
Inline
Side-by-side
Showing
18 changed files
with
143 additions
and
161 deletions
+143
-161
test.sh
test/azure-cli/test.sh
+8
-9
test.sh
test/common/test.sh
+9
-10
test.sh
test/desktop-lite/test.sh
+7
-8
test.sh
test/docker-from-docker/test.sh
+8
-9
test.sh
test/docker-in-docker/test.sh
+8
-9
test.sh
test/git-lfs/test.sh
+8
-9
test.sh
test/github-cli/test.sh
+8
-9
test.sh
test/gradle/test.sh
+8
-9
test.sh
test/hugo/test.sh
+8
-9
test.sh
test/java/test.sh
+8
-9
test.sh
test/kubectl-helm-minikube/test.sh
+9
-10
test.sh
test/maven/test.sh
+8
-9
test.sh
test/node/test.sh
+8
-9
test.sh
test/powershell/test.sh
+8
-9
test.sh
test/ruby/test.sh
+8
-9
test.sh
test/rust/test.sh
+8
-9
test.sh
test/sshd/test.sh
+7
-8
test.sh
test/terraform/test.sh
+7
-8
No files found.
test/azure-cli/test.sh
View file @
c04da738
#!/bin/bash
#!/bin/bash
set
-e
set
-e
# Optional: Import test library
source
dev-container-features-test-lib
# Optional: Import test library
# Definition specific tests
source
dev-container-features-test-lib
check
"version"
az
--version
# Definition specific tests
# Report result
check
"version"
az
--version
reportResults
\ No newline at end of file
# Report result
reportResults
\ No newline at end of file
test/common/test.sh
View file @
c04da738
#!/bin/bash
#!/bin/bash
set
-e
set
-e
# Optional: Import test library
source
dev-container-features-test-lib
# Optional: Import test library
# Definition specific tests
source
dev-container-features-test-lib
check
"jq"
jq
--version
check
"curl"
curl
--version
# Definition specific tests
# Report result
check
"jq"
jq
--version
reportResults
check
"curl"
curl
--version
\ No newline at end of file
# Report result
reportResults
\ No newline at end of file
test/desktop-lite/test.sh
View file @
c04da738
#!/bin/bash
#!/bin/bash
set
-e
set
-e
# Optional: Import test library
source
dev-container-features-test-lib
# Optional: Import test library
echo
'NO TESTS FOR ME YET!'
source
dev-container-features-test-lib
echo
'NO TESTS FOR ME YET!'
# Report result
reportResults
# Report result
\ No newline at end of file
reportResults
\ No newline at end of file
test/docker-from-docker/test.sh
View file @
c04da738
#!/bin/bash
#!/bin/bash
set
-e
set
-e
# Optional: Import test library
source
dev-container-features-test-lib
# Optional: Import test library
# Definition specific tests
source
dev-container-features-test-lib
check
"version"
docker
--version
# Definition specific tests
# Report result
check
"version"
docker
--version
reportResults
\ No newline at end of file
# Report result
reportResults
\ No newline at end of file
test/docker-in-docker/test.sh
View file @
c04da738
#!/bin/bash
#!/bin/bash
set
-e
set
-e
# Optional: Import test library
source
dev-container-features-test-lib
# Optional: Import test library
# Definition specific tests
source
dev-container-features-test-lib
check
"version"
docker
--version
# Definition specific tests
# Report result
check
"version"
docker
--version
reportResults
\ No newline at end of file
# Report result
reportResults
\ No newline at end of file
test/git-lfs/test.sh
View file @
c04da738
#!/bin/bash
#!/bin/bash
set
-e
set
-e
# Optional: Import test library
source
dev-container-features-test-lib
# Optional: Import test library
# Definition specific tests
source
dev-container-features-test-lib
check
"version"
git-lfs
--version
# Definition specific tests
# Report result
check
"version"
git-lfs
--version
reportResults
\ No newline at end of file
# Report result
reportResults
\ No newline at end of file
test/github-cli/test.sh
View file @
c04da738
#!/bin/bash
#!/bin/bash
set
-e
set
-e
# Optional: Import test library
source
dev-container-features-test-lib
# Optional: Import test library
# Definition specific tests
source
dev-container-features-test-lib
check
"version"
gh
--version
# Definition specific tests
# Report result
check
"version"
gh
--version
reportResults
\ No newline at end of file
# Report result
reportResults
\ No newline at end of file
test/gradle/test.sh
View file @
c04da738
#!/bin/bash
#!/bin/bash
set
-e
set
-e
# Optional: Import test library
source
dev-container-features-test-lib
# Optional: Import test library
# Definition specific tests
source
dev-container-features-test-lib
check
"version"
gradle
--version
# Definition specific tests
# Report result
check
"version"
gradle
--version
reportResults
\ No newline at end of file
# Report result
reportResults
\ No newline at end of file
test/hugo/test.sh
View file @
c04da738
#!/bin/bash
#!/bin/bash
set
-e
set
-e
# Optional: Import test library
source
dev-container-features-test-lib
# Optional: Import test library
# Definition specific tests
source
dev-container-features-test-lib
check
"version"
hugo version
# Definition specific tests
# Report result
check
"version"
hugo version
reportResults
\ No newline at end of file
# Report result
reportResults
\ No newline at end of file
test/java/test.sh
View file @
c04da738
#!/bin/bash
#!/bin/bash
set
-e
set
-e
# Optional: Import test library
source
dev-container-features-test-lib
# Optional: Import test library
# Definition specific tests
source
dev-container-features-test-lib
check
"version"
java
--version
# Definition specific tests
# Report result
check
"version"
java
--version
reportResults
\ No newline at end of file
# Report result
reportResults
\ No newline at end of file
test/kubectl-helm-minikube/test.sh
View file @
c04da738
#!/bin/bash
#!/bin/bash
set
-e
set
-e
# Optional: Import test library
source
dev-container-features-test-lib
# Optional: Import test library
# Definition specific tests
source
dev-container-features-test-lib
check
"kube"
kubectl
check
"helm"
helm version
# Definition specific tests
# Report result
check
"kube"
kubectl
reportResults
check
"helm"
helm version
\ No newline at end of file
# Report result
reportResults
\ No newline at end of file
test/maven/test.sh
View file @
c04da738
#!/bin/bash
#!/bin/bash
set
-e
set
-e
# Optional: Import test library
source
dev-container-features-test-lib
# Optional: Import test library
# Definition specific tests
source
dev-container-features-test-lib
check
"version"
maven
--version
# Definition specific tests
# Report result
check
"version"
maven
--version
reportResults
\ No newline at end of file
# Report result
reportResults
\ No newline at end of file
test/node/test.sh
View file @
c04da738
#!/bin/bash
#!/bin/bash
set
-e
set
-e
# Optional: Import test library
source
dev-container-features-test-lib
# Optional: Import test library
# Definition specific tests
source
dev-container-features-test-lib
check
"version"
node
--version
# Definition specific tests
# Report result
check
"version"
node
--version
reportResults
\ No newline at end of file
# Report result
reportResults
\ No newline at end of file
test/powershell/test.sh
View file @
c04da738
#!/bin/bash
#!/bin/bash
set
-e
set
-e
# Optional: Import test library
source
dev-container-features-test-lib
# Optional: Import test library
# Definition specific tests
source
dev-container-features-test-lib
check
"version"
pwsh
--version
# Definition specific tests
# Report result
check
"version"
pwsh
--version
reportResults
\ No newline at end of file
# Report result
reportResults
\ No newline at end of file
test/ruby/test.sh
View file @
c04da738
#!/bin/bash
#!/bin/bash
set
-e
set
-e
# Optional: Import test library
source
dev-container-features-test-lib
# Optional: Import test library
# Definition specific tests
source
dev-container-features-test-lib
check
"version"
ruby
--version
# Definition specific tests
# Report result
check
"version"
ruby
--version
reportResults
\ No newline at end of file
# Report result
reportResults
\ No newline at end of file
test/rust/test.sh
View file @
c04da738
#!/bin/bash
#!/bin/bash
set
-e
set
-e
# Optional: Import test library
source
dev-container-features-test-lib
# Optional: Import test library
# Definition specific tests
source
dev-container-features-test-lib
check
"version"
rust
--version
# Definition specific tests
# Report result
check
"version"
rust
--version
reportResults
\ No newline at end of file
# Report result
reportResults
\ No newline at end of file
test/sshd/test.sh
View file @
c04da738
#!/bin/bash
#!/bin/bash
set
-e
set
-e
# Optional: Import test library
source
dev-container-features-test-lib
# Optional: Import test library
echo
'NO TESTS FOR ME YET!'
source
dev-container-features-test-lib
echo
'NO TESTS FOR ME YET!'
# Report result
reportResults
# Report result
\ No newline at end of file
reportResults
\ No newline at end of file
test/terraform/test.sh
View file @
c04da738
#!/bin/bash
#!/bin/bash
set
-e
set
-e
# Optional: Import test library
source
dev-container-features-test-lib
# Optional: Import test library
echo
'NO TESTS FOR ME YET!'
source
dev-container-features-test-lib
echo
'NO TESTS FOR ME YET!'
# Report result
reportResults
# Report result
\ No newline at end of file
reportResults
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment