mirror of
https://github.com/ostreedev/ostree.git
synced 2025-01-26 14:04:12 +03:00
Merge pull request #2646 from cgwalters/bindings-tests
rust-bindings: Wire up `tests/`
This commit is contained in:
commit
68d1f54c5a
@ -29,6 +29,10 @@ features = ["dox"]
|
||||
name = "ostree"
|
||||
path = "rust-bindings/src/lib.rs"
|
||||
|
||||
[[test]]
|
||||
name = "integration"
|
||||
path = "rust-bindings/tests/tests.rs"
|
||||
|
||||
[workspace]
|
||||
members = [".", "rust-bindings/sys"]
|
||||
|
||||
|
@ -53,10 +53,7 @@ pub fn create_mtree(repo: &ostree::Repo) -> ostree::MutableTree {
|
||||
assert_eq!(mtree.copy_files().len(), 0);
|
||||
assert_eq!(mtree.copy_subdirs().len(), 0);
|
||||
let file = gio::File::for_path(
|
||||
Path::new(env!("CARGO_MANIFEST_DIR"))
|
||||
.join("tests")
|
||||
.join("data")
|
||||
.join("test.tar"),
|
||||
Path::new(env!("CARGO_MANIFEST_DIR")).join("rust-bindings/tests/data/test.tar"),
|
||||
);
|
||||
repo.write_archive_to_mtree(&file, &mtree, None, true, NONE_CANCELLABLE)
|
||||
.expect("test mtree");
|
||||
|
Loading…
x
Reference in New Issue
Block a user