Skip to content

Commit

Permalink
Merge pull request #21 from Rust-Wellcome/11-cicd-actually-add-a-test…
Browse files Browse the repository at this point in the history
…ing-suite

Added tests directory
  • Loading branch information
DLBPointon authored Jun 6, 2024
2 parents 68fa664 + c939e61 commit 54c1b5f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
pub mod tpf_fasta;
pub use tpf_fasta::*;
mod generics;
pub use generics::*;
6 changes: 6 additions & 0 deletions tests/tpf_fasta.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
pub use fasta_manipulation::tpf_fasta::*;

#[test]
fn it_works() {
assert_eq!(true, true);
}

0 comments on commit 54c1b5f

Please sign in to comment.