aboutsummaryrefslogtreecommitdiff
path: root/vendor/smallvec/tests/macro.rs
diff options
context:
space:
mode:
authorValentin Popov <valentin@popov.link>2024-07-19 15:37:58 +0300
committerValentin Popov <valentin@popov.link>2024-07-19 15:37:58 +0300
commita990de90fe41456a23e58bd087d2f107d321f3a1 (patch)
tree15afc392522a9e85dc3332235e311b7d39352ea9 /vendor/smallvec/tests/macro.rs
parent3d48cd3f81164bbfc1a755dc1d4a9a02f98c8ddd (diff)
downloadfparkan-a990de90fe41456a23e58bd087d2f107d321f3a1.tar.xz
fparkan-a990de90fe41456a23e58bd087d2f107d321f3a1.zip
Deleted vendor folder
Diffstat (limited to 'vendor/smallvec/tests/macro.rs')
-rw-r--r--vendor/smallvec/tests/macro.rs24
1 files changed, 0 insertions, 24 deletions
diff --git a/vendor/smallvec/tests/macro.rs b/vendor/smallvec/tests/macro.rs
deleted file mode 100644
index fa52e79..0000000
--- a/vendor/smallvec/tests/macro.rs
+++ /dev/null
@@ -1,24 +0,0 @@
-/// This file tests `smallvec!` without actually having the macro in scope.
-/// This forces any recursion to use a `$crate` prefix to reliably find itself.
-
-#[test]
-fn smallvec() {
- let mut vec: smallvec::SmallVec<[i32; 2]>;
-
- macro_rules! check {
- ($init:tt) => {
- vec = smallvec::smallvec! $init;
- assert_eq!(*vec, *vec! $init);
- }
- }
-
- check!([0; 0]);
- check!([1; 1]);
- check!([2; 2]);
- check!([3; 3]);
-
- check!([]);
- check!([1]);
- check!([1, 2]);
- check!([1, 2, 3]);
-}