From 29ab2e28775013a2cbbb3eb5dd306b5e2f251d19 Mon Sep 17 00:00:00 2001 From: Fuwn Date: Thu, 28 Apr 2022 18:27:06 -0700 Subject: feat: release 0.1.0 --- tests/adder.rs | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 tests/adder.rs (limited to 'tests') diff --git a/tests/adder.rs b/tests/adder.rs new file mode 100644 index 0000000..0a101ae --- /dev/null +++ b/tests/adder.rs @@ -0,0 +1,31 @@ +// This file is part of Rust Crate Template . +// Copyright (C) 2022-2022 Fuwn +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, version 3. +// +// This program is distributed in the hope that it will be useful, but +// WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . +// +// Copyright (C) 2022-2022 Fuwn +// SPDX-License-Identifier: GPL-3.0-only + +fn main() { + let adder = rust_crate_template::Adder::new(1, 2); + + println!("{}", adder.add()); +} + +#[cfg(test)] +mod tests { + #[test] + fn it_works() { + assert_eq!(rust_crate_template::Adder::new(1, 2).add(), 3); + } +} -- cgit v1.2.3