Skip to content

Commit c6a64b2

Browse files
committed
Remove manual tests in favor of simpler quickcheck tests
1 parent f4690ce commit c6a64b2

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

tests/specializations.rs

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -84,11 +84,6 @@ fn put_back_test(test_vec: Vec<i32>) {
8484
test_specializations(&pb);
8585
}
8686

87-
#[test]
88-
fn put_back() {
89-
put_back_test(vec![7, 4, 1]);
90-
}
91-
9287
quickcheck! {
9388
fn put_back_qc(test_vec: Vec<i32>) -> () {
9489
put_back_test(test_vec)
@@ -106,13 +101,6 @@ fn merge_join_by_test(i1: Vec<usize>, i2: Vec<usize>) {
106101
test_specializations(&mjb);
107102
}
108103

109-
#[test]
110-
fn merge_join_by() {
111-
let i1 = vec![1, 3, 5, 7, 8, 9];
112-
let i2 = vec![0, 3, 4, 5];
113-
merge_join_by_test(i1, i2);
114-
}
115-
116104
quickcheck! {
117105
fn merge_join_by_qc(i1: Vec<usize>, i2: Vec<usize>) -> () {
118106
merge_join_by_test(i1, i2)

0 commit comments

Comments
 (0)