File tree Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -67,6 +67,7 @@ extras = [
67
67
" interrupt" ,
68
68
" status" ,
69
69
" dirwalk" ,
70
+ " blame"
70
71
]
71
72
72
73
# # A collection of features that need a larger MSRV, and thus are disabled by default.
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ use gix::bstr::BString;
2
2
use std:: num:: NonZero ;
3
3
4
4
#[ test]
5
- fn blame_simple ( ) -> crate :: Result {
5
+ fn simple ( ) -> crate :: Result {
6
6
let repo = crate :: named_repo ( "make_blame_repo.sh" ) ?;
7
7
8
8
let suspect = repo. head_id ( ) ?;
@@ -14,7 +14,7 @@ fn blame_simple() -> crate::Result {
14
14
}
15
15
16
16
#[ test]
17
- fn blame_simple_with_options ( ) -> crate :: Result {
17
+ fn with_options ( ) -> crate :: Result {
18
18
let repo = crate :: named_repo ( "make_blame_repo.sh" ) ?;
19
19
20
20
let options = gix:: blame:: Options {
Original file line number Diff line number Diff line change @@ -133,6 +133,7 @@ check:
133
133
cargo check -p gix --no-default-features --features credentials --tests
134
134
cargo check -p gix --no-default-features --features index --tests
135
135
cargo check -p gix --no-default-features --features interrupt --tests
136
+ cargo check -p gix --no-default-features --features blame --tests
136
137
cargo check -p gix --no-default-features
137
138
cargo check -p gix-odb --features serde
138
139
cargo check --no-default-features --features max-control
You can’t perform that action at this time.
0 commit comments