Skip to content
Permalink
0759e4fd6b
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
…mage in pipeline
0 contributors

Users who have contributed to this file

17 lines (12 sloc) 465 Bytes
#!/usr/bin/env bats
load ../common
# Assumes process is running
@test "MySQL user running process" {
docker exec -i $imagename ps -u mysql
}
@test "Creates root account and database" {
docker exec -i $imagename mysql -u root --password="123321" -h 127.0.0.1 -e 'show tables' registry
}
@test "Creates user account with password" {
docker exec -i $imagename mysql -u registry_user --password="WJzesbe3poNZ91qIbmR7" -h 127.0.0.1 -e 'show tables' registry
}