Write units tests

This commit is contained in:
Benjamin Herman 2022-07-09 13:06:29 -07:00
parent 53b1ae7524
commit 54db766751
No known key found for this signature in database
GPG key ID: A2D1938EC56DBF49
3 changed files with 66 additions and 2 deletions

View file

@ -20,5 +20,9 @@ jobs:
run: cargo build --no-default-features
- name: Build no_std with allocator
run: cargo build --no-default-features --features alloc
- name: Run tests
run: cargo test
- name: Test
run: cargo test
- name: Test no_std
run: cargo test --no-default-features
- name: Test no_std with allocator
run: cargo test --no-default-features --features alloc