
Security News
CISA’s 2025 SBOM Guidance Adds Hashes, Licenses, Tool Metadata, and Context
CISA’s 2025 draft SBOM guidance adds new fields like hashes, licenses, and tool metadata to make software inventories more actionable.
A minimal solid testing framework for Ruby.
Add this line to your application's Gemfile:
gem "petitest"
And then execute:
bundle
Or install it yourself as:
gem install petitest
Define a child class of Petitest::Test
with #test_xxx
methods.
require "petitest/autorun"
class ExampleTest < Petitest::Test
def test_addition
assert { 1 + 1 == 100 }
end
end
Run your test file as a Ruby script:
ruby test/example_test.rb
PetitestTest
#test_one_plus_one_to_be_two
Counts:
1 tests
1 passes
0 failures
0 skips
Times:
Started: 2017-03-25T15:29:21.243918+09:00
Finished: 2017-03-25T15:29:21.244149+09:00
Total: 0.000231s
If any test failed, exit code 1 is returned, othewise 0.
echo $?
0
Petitest provides only one assertion method, #assert
.
assert { foo }
If you need more assertions, use plugins like patitest-assertions.
Mechanism for filter out unnecessary lines from error backtrace.
Each element must be able to respond to #===
method.
Petitest.configuration.backtrace_filters = [
-> (line) { line.start_with?("/path/to/petitest/lib") },
]
Enable colored output.
Petitest.configuration.color = true
Color scheme for colored output.
Petitest.configuration.color_scheme = {
detail: :cyan,
error: :red,
pass: :green,
skip: :yellow,
}
These color types are available on color scheme configuration:
:black
:blue
:bold
:cyan
:green
:magenta
:red
:white
:yellow
Output path for some subscribers.
Petitest.configuration.output = ::STDOUT
Petitest.configuration.output.sync = true
Test event subscribers (test reporters are kind of subscribers).
Petitest.configuration.subscribers = [
::Petitest::Subscribers::DocomentReportSubscriber.new,
]
These subscribers are provided by default:
Petitest::Subscribers::DocumentReportSubscriber
(default)Petitest::Subscribers::JsonReportSubscriber
Petitest::Subscribers::ProgressReportSubscriber
Here are some official plugins for Petitest:
TestPlan
|---Test 1
|---Test 2
|---Test 3
|---TestGroup 1
| |---Test 1-1
| |---Test 1-2
| |---Test 1-3
| `---TestGroup1-1
| |---Test 1-1-1
| |---Test 1-1-2
| `---Test 1-1-3
|---TestGroup2
| |---Test 2-1
| |---Test 2-2
| `---Test 2-3
`---TestGroup3
|---Test 3-1
|---Test 3-2
|---Test 3-3
`---TestGroup3-1
|---Test 3-1-1
|---Test 3-1-2
`---Test 3-1-3
#before_running_test_plan(test_plan)
#before_running_test_group(test_group)
#before_running_test(test)
#after_running_test(test)
#after_running_test_group(test_group)
#after_running_test_plan(test_plan)
FAQs
Unknown package
We found that petitest demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
CISA’s 2025 draft SBOM guidance adds new fields like hashes, licenses, and tool metadata to make software inventories more actionable.
Security News
A clarification on our recent research investigating 60 malicious Ruby gems.
Security News
ESLint now supports parallel linting with a new --concurrency flag, delivering major speed gains and closing a 10-year-old feature request.