File: install

package info (click to toggle)
ruby-puppetlabs-spec-helper 8.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 344 kB
  • sloc: ruby: 1,526; sh: 8; makefile: 6
file content (12 lines) | stat: -rwxr-xr-x 229 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash

TMP=$(mktemp -d)

pushd "$TMP"
  echo "require 'puppetlabs_spec_helper/rake_tasks'" > Rakefile
  if rake -T | grep -q fixtures 2>&1; then
    echo "puppetlabs_spec_helper rake tasks seems working."
  fi
popd

exit 0