File: README.md

package info (click to toggle)
postgresql-set-user 4.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 272 kB
  • sloc: ansic: 675; sql: 250; makefile: 36; sh: 6
file content (10 lines) | stat: -rw-r--r-- 358 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
# Testing

Testing is performed using a Docker container. First build the container with the desired PostgreSQL version:
```
docker build --build-arg UID=$(id -u) --build-arg GID=$(id -g) --build-arg PGVER=18 -f test/Dockerfile.debian -t set_user-test .
```
Then run the test:
```
docker run --rm -v $(pwd):/set_user set_user-test /set_user/test/test.sh
```