aboutsummaryrefslogtreecommitdiff
path: root/src/tests/test1.sh
blob: 52c2ba3d8e138e8dbdaca6d8ea40c2b3d2c81a80 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

. ./framework.sh

plan 2

is "$(cat /proc/_test_module)" "You have no previous messages"

echo kek > /proc/_test_module
is "$(cat /proc/_test_module)" "Your last message was: kek"

conclude