diff options
author | Matěj Cepl <mcepl@cepl.eu> | 2023-08-03 11:16:57 +0200 |
---|---|---|
committer | Matěj Cepl <mcepl@cepl.eu> | 2023-08-03 11:16:57 +0200 |
commit | c44d20b642523c14a77e3f3c316a1d6cf1df7340 (patch) | |
tree | 40a8a49f49a4793c72ac988628504e65b81059fc /tests/foundational.bats | |
parent | e9432fe394e880d6eef93e834217f3e52e8139ab (diff) | |
download | pinentry-rofi-c44d20b642523c14a77e3f3c316a1d6cf1df7340.tar.gz |
Basic testing infrastructure established.
Diffstat (limited to 'tests/foundational.bats')
-rw-r--r-- | tests/foundational.bats | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/foundational.bats b/tests/foundational.bats new file mode 100644 index 0000000..5683371 --- /dev/null +++ b/tests/foundational.bats @@ -0,0 +1,11 @@ +#!/usr/bin/env bats + +@test "addition using bc" { + result="$(echo 2+2 | bc)" + [ "$result" -eq 4 ] +} + +@test "addition using dc" { + result="$(echo 2 2+p | dc)" + [ "$result" -eq 4 ] +} |