Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
test-unit-power_assert
Advanced tools
= test-unit-power_assert == About Power Assert for test-unit.
As of test-unit 3.0.0, it has built-in support for Power Assert so test-unit-power_assert is no longer needed.
== Installation $ gem install test-unit-power_assert
or
$ gem install bundler (if you need) $ echo "source 'http://rubygems.org'" > Gemfile $ echo "gem 'power_assert', :git => 'git://github.com/k-tsj/power_assert.git'" >> Gemfile $ echo "gem 'test-unit-power_assert', :git => 'git://github.com/k-tsj/test-unit-power_assert.git'" >> Gemfile $ bundle install --path vendor/bundle
== Basic Usage === Test Code
require 'test/unit' require 'test/unit/power_assert' class MyTest < Test::Unit::TestCase def test_failed assert do "0".class == "3".to_i.times.map {|i| i + 1 }.class end end end
Note: It is recommended to require test/unit/power_assert before loading test code.
=== Result Failure: "0".class == "3".to_i.times.map {|i| i + 1 }.class | | | | | | | | | | | Array | | | | [1, 2, 3] | | | #<Enumerator: 3:times> | | 3 | false String test_failed(MyTest)
== Travis Build Status {}[http://travis-ci.org/k-tsj/test-unit-power_assert]
FAQs
Unknown package
We found that test-unit-power_assert 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.