添加集成测试框架,更新 .gitignore
- 添加 tests/integration_test.rs 测试框架 - .gitignore 排除 .sisyphus/ 工作区目录
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -1,2 +1,3 @@
|
|||||||
/target
|
/target
|
||||||
/.vscode
|
/.vscode
|
||||||
|
.sisyphus/
|
||||||
4
tests/integration_test.rs
Normal file
4
tests/integration_test.rs
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
#[test]
|
||||||
|
fn test_basic_compilation() {
|
||||||
|
assert_eq!(2 + 2, 4);
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user