-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Modify txtar tests to add configurable import mappers
- Loading branch information
Showing
4 changed files
with
64 additions
and
5 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,37 @@ | ||
-- cue.mod/module.cue -- | ||
module: "example.com" | ||
|
||
-- in.cue -- | ||
package test | ||
|
||
import "example.com/dep" | ||
import "example.com/other" | ||
|
||
#Foo: { | ||
x: dep.#Test | ||
y: other.#Test | ||
} @cuetsy(kind="interface") | ||
|
||
-- dep/file.cue -- | ||
package dep | ||
|
||
#Test: { | ||
a: string | ||
} @cuetsy(kind="interface") | ||
|
||
-- other/file.cue -- | ||
package other | ||
|
||
#Test: { | ||
a: string | ||
} @cuetsy(kind="interface") | ||
|
||
-- out/gen -- | ||
|
||
import * as dep from 'new'; | ||
import * as other from 'example.com/other'; | ||
|
||
export interface Foo { | ||
x: dep.Test; | ||
y: other.Test; | ||
} |
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