-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #51 from nodestream-proj/test/additional-integrati…
…on-tests
- Loading branch information
Showing
10 changed files
with
104,282 additions
and
4 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
1,001 changes: 1,001 additions & 0 deletions
1,001
tests/integration/fixtures/data/airport-codes.csv
Large diffs are not rendered by default.
Oops, something went wrong.
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,27 @@ | ||
- implementation: nodestream.pipeline.extractors:FileExtractor | ||
arguments: | ||
globs: | ||
- tests/integration/fixtures/data/airport-codes.csv | ||
|
||
- implementation: nodestream.interpreting:Interpreter | ||
arguments: | ||
interpretations: | ||
- type: source_node | ||
node_type: Airport | ||
key: | ||
identifier: !jmespath ident | ||
properties: | ||
elevation_in_feet: !jmespath elevation_ft | ||
iata_code: !jmespath iata_code | ||
local_code: !jmespath local_code | ||
name: !jmespath name | ||
- type: relationship | ||
node_type: Country | ||
relationship_type: WITHIN | ||
node_key: | ||
code: !jmespath iso_country | ||
- type: relationship | ||
node_type: Region | ||
relationship_type: WITHIN | ||
node_key: | ||
code: !jmespath iso_region |
Oops, something went wrong.