Compare cargo-expand output against expected in CI

This commit is contained in:
David Tolnay 2021-02-07 13:57:37 -08:00
parent 70248ee051
commit 4ecd70bbf7
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82
7 changed files with 35 additions and 2 deletions

8
tests/Cargo.toml Normal file
View file

@ -0,0 +1,8 @@
[package]
name = "cargo-expand-test"
version = "0.0.0"
edition = "2018"
publish = false
[lib]
path = "lib.rs"

6
tests/lib.expand.rs Normal file
View file

@ -0,0 +1,6 @@
#![feature(prelude_import)]
#[prelude_import]
use std::prelude::v1::*;
#[macro_use]
extern crate std;
pub fn test() {}

1
tests/lib.rs Normal file
View file

@ -0,0 +1 @@
pub fn test() {}