From 74c72d9d2f5442a21f5ac15a595873aac380e8b2 Mon Sep 17 00:00:00 2001 From: Milky0217 Date: Wed, 25 Mar 2026 13:18:25 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E9=9B=86=E6=88=90=E6=B5=8B?= =?UTF-8?q?=E8=AF=95=E6=A1=86=E6=9E=B6=EF=BC=8C=E6=9B=B4=E6=96=B0=20.gitig?= =?UTF-8?q?nore?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 添加 tests/integration_test.rs 测试框架 - .gitignore 排除 .sisyphus/ 工作区目录 --- .gitignore | 3 ++- tests/integration_test.rs | 4 ++++ 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 tests/integration_test.rs diff --git a/.gitignore b/.gitignore index 0f84cc9..0e9592a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /target -/.vscode \ No newline at end of file +/.vscode +.sisyphus/ \ No newline at end of file diff --git a/tests/integration_test.rs b/tests/integration_test.rs new file mode 100644 index 0000000..d3e5375 --- /dev/null +++ b/tests/integration_test.rs @@ -0,0 +1,4 @@ +#[test] +fn test_basic_compilation() { + assert_eq!(2 + 2, 4); +}