Restore tests/test_expr.rs to actual crate contents.
We aren't building tests/test_expr.rs anyway, and even if we were,
cargo_env_compat can supply CARGO_PKG_VERSION.
Bug: http://b/339424309
Test: treehugger
Change-Id: If1b226307135ba4d353c611bcfbf364699b5f18b
diff --git a/tests/test_expr.rs b/tests/test_expr.rs
index 53cf67a..a8e6bd8 100644
--- a/tests/test_expr.rs
+++ b/tests/test_expr.rs
@@ -107,7 +107,7 @@
#[test]
fn test_env_present() {
paste! {
- struct [<Lib "paste">];
+ struct [<Lib env!("CARGO_PKG_NAME")>];
let _ = Libpaste;
}
@@ -162,7 +162,7 @@
#[test]
fn test_env_to_lower() {
paste! {
- struct [<Lib "paste":lower>];
+ struct [<Lib env!("CARGO_PKG_NAME"):lower>];
let _ = Libpaste;
}
@@ -171,7 +171,7 @@
#[test]
fn test_env_to_upper() {
paste! {
- const [<LIB "paste":upper>]: &str = "libpaste";
+ const [<LIB env!("CARGO_PKG_NAME"):upper>]: &str = "libpaste";
let _ = LIBPASTE;
}
@@ -180,7 +180,7 @@
#[test]
fn test_env_to_snake() {
paste! {
- const [<LIB "paste":snake:upper>]: &str = "libpaste";
+ const [<LIB env!("CARGO_PKG_NAME"):snake:upper>]: &str = "libpaste";
let _ = LIBPASTE;
}
@@ -190,7 +190,7 @@
fn test_env_to_camel() {
paste! {
#[allow(non_upper_case_globals)]
- const [<LIB "paste":camel>]: &str = "libpaste";
+ const [<LIB env!("CARGO_PKG_NAME"):camel>]: &str = "libpaste";
let _ = LIBPaste;
}