Adding a set of behavioural tests

This commit is contained in:
Micheal Wilkinson
2026-03-19 10:57:25 +00:00
parent ee4388b0f4
commit 005209703e
4 changed files with 296 additions and 11 deletions

View File

@@ -0,0 +1,13 @@
FROM alpine:3.21
RUN apk add --no-cache \
bash \
ca-certificates \
git \
ruby \
ruby-thor
WORKDIR /workspace
COPY . /workspace
ENTRYPOINT ["/workspace/test/behavior/behavior_suite.sh"]