Add test: Test whether imag-header reports header at imag.version after entry creation
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
This commit is contained in:
parent
61a1a241c8
commit
4b3e2ea4cd
1 changed files with 23 additions and 0 deletions
|
@ -17,3 +17,26 @@
|
||||||
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
//
|
//
|
||||||
|
|
||||||
|
use std::process::Command;
|
||||||
|
|
||||||
|
use assert_cmd::prelude::*;
|
||||||
|
use assert_fs::fixture::TempDir;
|
||||||
|
|
||||||
|
pub fn binary(tempdir: &TempDir) -> Command {
|
||||||
|
crate::imag::binary(tempdir, "imag-header")
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_no_header_besides_version_after_creation() {
|
||||||
|
crate::setup_logging();
|
||||||
|
let imag_home = crate::imag::make_temphome();
|
||||||
|
crate::imag_init::call(&imag_home);
|
||||||
|
crate::imag_create::call(&imag_home, &["test"]);
|
||||||
|
|
||||||
|
let mut bin = binary(&imag_home);
|
||||||
|
bin.arg("test");
|
||||||
|
bin.arg("string");
|
||||||
|
bin.arg("imag.version");
|
||||||
|
bin.assert().success();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue