File: push-no-changes.t

package info (click to toggle)
git-subrepo 0.4.9-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,552 kB
  • sloc: sh: 7,074; makefile: 273; perl: 226
file content (29 lines) | stat: -rw-r--r-- 455 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/usr/bin/env bash

set -e

source test/setup

use Test::More

note "Test output from successful git-subrepo commands"

clone-foo-and-bar

{
  is "$(
    cd "$OWNER/bar"
    git subrepo --quiet clone "$UPSTREAM/foo"
    catch git subrepo push foo
  )" \
    "Subrepo 'foo' has no new commits to push." \
    "Output OK: Check that 'push' requires changes to push"
  (
    cd "$OWNER/bar"
    git subrepo --quiet clean foo
  )
}

done_testing 1

teardown