Skip to content

Commit

Permalink
fix: runtime-dependencies integration test names
Browse files Browse the repository at this point in the history
  • Loading branch information
Scott Robinson committed Jul 3, 2023
1 parent ec480fe commit 5d83c83
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions it/full/spec/it_spec.sh
Original file line number Diff line number Diff line change
Expand Up @@ -318,21 +318,21 @@ Describe "Hermit"

Describe "Runtime dependencies"
. bin/activate-hermit
It "Does not install runtime-dependencies to the environment"
It "do not install to the environment"
When call hermit install testbin1
The status should be success
The stderr should be blank
The file ./bin/testbin1 should be exist
The file ./bin/testbin2 should not be exist
End

It "allows installing packages with binaries conflicting with runtime dependencies"
It "allow installing packages with conflicting binaries"
When call hermit install faketestbin2
The status should be success
The stderr should be blank
End

It "Calls the runtime dependency correctly"
It "calls the runtime dependency correctly"
When call ./bin/testbin1
The status should be success
The stdout should equal "Hello from testbin2"
Expand All @@ -344,7 +344,7 @@ Describe "Hermit"
ln -s . ./symlinked
cd ./symlinked
. bin/activate-hermit
It "Allows calling binaries in the environment"
It "allows calling binaries in the environment"
When call ./bin/testbin1
The status should be success
The stdout should not be blank
Expand Down

0 comments on commit 5d83c83

Please sign in to comment.