Skip to content

Commit

Permalink
extracting
Browse files Browse the repository at this point in the history
  • Loading branch information
rfuzzo committed Dec 2, 2023
1 parent 508dc56 commit 1954a11
Show file tree
Hide file tree
Showing 8 changed files with 359 additions and 49 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
/target
/tests/out
src/metadata-resources.csv
.DS_Store
46 changes: 46 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in library 'red4lib'",
"cargo": {
"args": [
"test",
"--no-run",
"--lib",
"--package=red4lib"
],
"filter": {
"name": "red4lib",
"kind": "lib"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug integration test 'functional_tests'",
"cargo": {
"args": [
"test",
"--no-run",
"--test=functional_tests",
"--package=red4lib"
],
"filter": {
"name": "functional_tests",
"kind": "test"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}
Loading

0 comments on commit 1954a11

Please sign in to comment.