We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
0 parents commit 149b04eCopy full SHA for 149b04e
.gitignore
@@ -0,0 +1,2 @@
1
+/target
2
+Cargo.lock
Cargo.toml
@@ -0,0 +1,9 @@
+[package]
+name = "envtestkit"
3
+version = "0.1.0"
4
+authors = ["Daniel <[email protected]>"]
5
+edition = "2018"
6
+
7
+# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
8
9
+[dependencies]
README.md
@@ -0,0 +1,3 @@
+# envtestkit
+**_Under development._**
src/lib.rs
@@ -0,0 +1,7 @@
+#[cfg(test)]
+mod tests {
+ #[test]
+ fn it_works() {
+ assert_eq!(2 + 2, 4);
+ }
+}
0 commit comments