Skip to content

asarkar/exercism-rust

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

34 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

exercism-rust

My solutions for Exercism Rust Track. Feel free to open issues for questions, comments, or suggestions.

Running tests

RUST_BACKTRACE=1 cargo test --release --manifest-path </path/to/Cargo.toml> \
	--all-features -- --include-ignored --nocapture --exact <test_name>

To run a test test_bits in file src/bitset.rs, under module tests, use the path bitset::tests::test_bits. To run all tests in that module, use the path bitset::tests.

To run a test test_bits in file src/lib.rs, under module tests, use the path tests::test_bits.

References

License

Released under Apache License v2.0.