homebrew-core/Formula/chrome-export.rb

30 lines
1.1 KiB
Ruby
Raw Normal View History

class ChromeExport < Formula
desc "Convert Chromes bookmarks and history to HTML bookmarks files"
homepage "https://github.com/bdesham/chrome-export"
url "https://github.com/bdesham/chrome-export/archive/v2.0.tar.gz"
sha256 "ff972c3d88b030b65823388e08cd65ebd8795f0674b5581e9e8fdf3a0f4dc7ef"
bottle :unneeded
depends_on "python" if MacOS.version <= :snow_leopard
def install
bin.install "export-chrome-bookmarks"
bin.install "export-chrome-history"
pkgshare.install "test"
end
test do
cp_r (pkgshare/"test").children, testpath
system bin/"export-chrome-bookmarks", "Bookmarks",
"bookmarks_actual_output.html"
assert_predicate testpath/"bookmarks_actual_output.html", :exist?
assert_equal (testpath/"bookmarks_expected_output.html").read,
(testpath/"bookmarks_actual_output.html").read
system bin/"export-chrome-history", "History", "history_actual_output.html"
assert_predicate testpath/"history_actual_output.html", :exist?
assert_equal (testpath/"history_expected_output.html").read,
(testpath/"history_actual_output.html").read
end
end