#!/bin/sh

oneTimeSetUp() {
  jj config set --user user.name "Test User"
  jj config set --user user.email "nobody@debian.org"
}

testCommit() {
  jj git init "$AUTOPKGTEST_TMP/test-repo"
  assertTrue $?
  cd "$AUTOPKGTEST_TMP/test-repo"
  echo "data" > data.txt
  jj commit -m "test commit 1"
  assertTrue $?
}

. shunit2
