aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/test_comparison_operators.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_comparison_operators.sh')
-rw-r--r--tests/test_comparison_operators.sh14
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/test_comparison_operators.sh b/tests/test_comparison_operators.sh
deleted file mode 100644
index 7bcb689..0000000
--- a/tests/test_comparison_operators.sh
+++ /dev/null
@@ -1,14 +0,0 @@
-test_exit_code 0 <<'EOF'
-#include "../../helpers.h"
-
-int main() {
- ASSERT_EQ(1, 0 == 0);
- ASSERT_EQ(0, 123 != 123);
- ASSERT_EQ(1, 123 != 456);
- ASSERT_EQ(0, 123 == 124);
- ASSERT_EQ(1, 123 < 567);
- ASSERT_EQ(1, 123 <= 567);
- ASSERT_EQ(1, 123 <= 123);
- ASSERT_EQ(0, 123 < 123);
-}
-EOF