Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
B
brew
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to JiHu GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
KMSCAKKSCFKA AKFACAMADCAS
brew
Commits
2c81083f
Unverified
Commit
2c81083f
authored
8 years ago
by
Dominyk Tiller
Browse files
Options
Downloads
Patches
Plain Diff
test_gpg: add initial tests
parent
92a6a557
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Library/Homebrew/test/test_gpg.rb
+22
-0
22 additions, 0 deletions
Library/Homebrew/test/test_gpg.rb
with
22 additions
and
0 deletions
Library/Homebrew/test/test_gpg.rb
0 → 100644
+
22
−
0
View file @
2c81083f
require
"testing_env"
require
"gpg"
class
GpgTest
<
Homebrew
::
TestCase
def
setup
skip
"GPG Unavailable"
unless
Gpg
.
available?
@dir
=
Pathname
.
new
(
mktmpdir
)
end
def
teardown
@dir
.
rmtree
end
def
test_create_test_key
Dir
.
chdir
(
@dir
)
do
with_environment
(
"HOME"
=>
@dir
)
do
shutup
{
Gpg
.
create_test_key
(
@dir
)
}
assert_predicate
@dir
/
".gnupg/secring.gpg"
,
:exist?
end
end
end
end
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment