aboutsummaryrefslogtreecommitdiff
path: root/1.0.107/tests/test_shebang.rs
diff options
context:
space:
mode:
Diffstat (limited to '1.0.107/tests/test_shebang.rs')
-rw-r--r--1.0.107/tests/test_shebang.rs59
1 files changed, 0 insertions, 59 deletions
diff --git a/1.0.107/tests/test_shebang.rs b/1.0.107/tests/test_shebang.rs
deleted file mode 100644
index dc26b9aa..00000000
--- a/1.0.107/tests/test_shebang.rs
+++ /dev/null
@@ -1,59 +0,0 @@
-#[macro_use]
-mod macros;
-
-#[test]
-fn test_basic() {
- let content = "#!/usr/bin/env rustx\nfn main() {}";
- let file = syn::parse_file(content).unwrap();
- snapshot!(file, @r###"
- File {
- shebang: Some("#!/usr/bin/env rustx"),
- items: [
- Item::Fn {
- vis: Inherited,
- sig: Signature {
- ident: "main",
- generics: Generics,
- output: Default,
- },
- block: Block,
- },
- ],
- }
- "###);
-}
-
-#[test]
-fn test_comment() {
- let content = "#!//am/i/a/comment\n[allow(dead_code)] fn main() {}";
- let file = syn::parse_file(content).unwrap();
- snapshot!(file, @r###"
- File {
- attrs: [
- Attribute {
- style: Inner,
- path: Path {
- segments: [
- PathSegment {
- ident: "allow",
- arguments: None,
- },
- ],
- },
- tokens: TokenStream(`(dead_code)`),
- },
- ],
- items: [
- Item::Fn {
- vis: Inherited,
- sig: Signature {
- ident: "main",
- generics: Generics,
- output: Default,
- },
- block: Block,
- },
- ],
- }
- "###);
-}