添加集成测试框架,更新 .gitignore

- 添加 tests/integration_test.rs 测试框架
- .gitignore 排除 .sisyphus/ 工作区目录
This commit is contained in:
2026-03-25 13:18:25 +08:00
parent c37a7a5f36
commit 74c72d9d2f
2 changed files with 6 additions and 1 deletions

3
.gitignore vendored
View File

@@ -1,2 +1,3 @@
/target
/.vscode
/.vscode
.sisyphus/

View File

@@ -0,0 +1,4 @@
#[test]
fn test_basic_compilation() {
assert_eq!(2 + 2, 4);
}