remove test lib
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Enrico Bühler 2023-06-27 15:07:38 +02:00
parent 6d2ffe6902
commit 1d9508f49b
2 changed files with 0 additions and 22 deletions

View File

@ -1,8 +0,0 @@
[package]
name = "something"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

View File

@ -1,14 +0,0 @@
pub fn add(left: usize, right: usize) -> usize {
left + right
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn it_works() {
let result = add(2, 2);
assert_eq!(result, 4);
}
}