Merge pull request #207020 from Homebrew/bump-qpdf-11.10.0
[Homebrew/homebrew-core.git] / Formula / t / timedog.rb
blobc3611c673877ccae32f87282a74f6efcc3154e54
1 class Timedog < Formula
2   desc "Lists files that were saved by a backup of the macOS Time Machine"
3   homepage "https://github.com/nlfiedler/timedog"
4   url "https://github.com/nlfiedler/timedog/archive/refs/tags/v1.4.tar.gz"
5   sha256 "169ab408fe5c6b292a7d4adf0845c42160108fd43d6a392b95210204de49cb52"
6   license "GPL-2.0-or-later"
7   head "https://github.com/nlfiedler/timedog.git", branch: "master"
9   bottle do
10     rebuild 1
11     sha256 cellar: :any_skip_relocation, all: "a0e45f17640f67392a0681305ed9ea138fde831f355a79ef857d05e1fd7e0b9e"
12   end
14   depends_on :macos
16   def install
17     bin.install "timedog"
18   end
20   test do
21     assert_match "No machine directory found for host", shell_output("#{bin}/timedog 2>&1", 1)
22   end
23 end