Write units tests

This commit is contained in:
Nettika 2022-07-09 13:06:29 -07:00
parent af1c088507
commit 9881e3df6a
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