Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions tests/pkg/assets/install1/gold/install.gold
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,25 @@ Package 'pkg3' installed with prefix 'pkg3_modified'.
exec main3.toit
hello from pkg3_modified
Exit Code: 0
==================
== package.yaml
dependencies:
pkg:
path: pkg
prepkg:
path: pkg2
pkg3_modified:
path: pkg3
==================
== package.lock
prefixes:
pkg: pkg
prepkg: pkg2
pkg3_modified: pkg3
packages:
pkg:
path: pkg
pkg2:
path: pkg2
pkg3:
path: pkg3
2 changes: 2 additions & 0 deletions tests/pkg/install1-gold-test.toit
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ test tester/GoldTester:
["// Installing a package where the directory name is not the package name."],
["pkg", "install", "--local", "pkg3"],
["exec", "main3.toit"],
["package.yaml"],
["package.lock"],
]

tester.gold "install-non-existing" [
Expand Down
Loading