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); +}