Skip to content

Commit

Permalink
test: move proptests to integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
codahale committed Oct 18, 2023
1 parent 1d64c49 commit 9e3156a
Show file tree
Hide file tree
Showing 7 changed files with 3 additions and 18 deletions.
11 changes: 1 addition & 10 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,7 @@ documentation = "https://docs.rs/lockstitch/"
keywords = ["crypto", "aegis-128l", "sha-256", "hazmat"]
categories = ["cryptography", "no-std"]
readme = "README.md"
include = [
"src/**/*",
"benches/**/*",
"tests/**/*",
"proptest-regressions",
"LICENSE",
"README.md",
"design.md",
"perf.md",
]
include = ["src/**/*", "benches/**/*", "tests/**/*", "LICENSE", "README.md", "design.md", "perf.md"]

[dependencies]
aes = { version = "0.8.3", features = ["hazmat"], optional = true }
Expand Down
4 changes: 0 additions & 4 deletions src/integration_tests.rs

This file was deleted.

2 changes: 0 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,6 @@ pub mod design {}
#[doc = include_str!("../perf.md")]
pub mod perf {}

mod integration_tests;

/// The length of an authentication tag in bytes.
pub const TAG_LEN: usize = 16;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use crate::{Protocol, TAG_LEN};
use lockstitch::{Protocol, TAG_LEN};
use proptest::collection::vec;
use proptest::prelude::*;

Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use crate::{Protocol, TAG_LEN};
use lockstitch::{Protocol, TAG_LEN};
use proptest::collection::vec;
use proptest::prelude::*;

Expand Down

0 comments on commit 9e3156a

Please sign in to comment.