Douglas Eichelberger 9075cbae62 brew style --fix
2023-04-21 09:58:50 -07:00

28 lines
763 B
Ruby

# frozen_string_literal: true
require_relative "shared_examples"
describe UnpackStrategy::Subversion, :needs_svn do
let(:repo) { mktmpdir }
let(:working_copy) { mktmpdir }
let(:path) { working_copy }
before do
safe_system "svnadmin", "create", repo
safe_system "svn", "checkout", "file://#{repo}", working_copy
FileUtils.touch working_copy/"test"
system "svn", "add", working_copy/"test"
system "svn", "commit", working_copy, "-m", "Add `test` file."
end
include_examples "UnpackStrategy::detect"
include_examples "#extract", children: ["test"]
context "when the directory name contains an '@' symbol" do
let(:working_copy) { mktmpdir(["", "@1.2.3"]) }
include_examples "#extract", children: ["test"]
end
end