![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Polyamory is a command-line tool that knows how to run your tests regardless of the framework. It can either run the whole test suite or filter by keywords, test case names, or tags. It remembers the differences between arguments for different testing frameworks so you don't have to.
Frameworks supported:
features/**/*.feature
spec/**/*_spec.rb
test/**/*_test.rb
or test/**/test*.rb
test/*.bats
# Mac OS X
brew install https://github.com/mislav/polyamory/raw/master/brew/polyamory.rb
# other
gem i polyamory
# alias for brevity
alias pam=polyamory
polyamory
- Runs the full test suite for any project. For example, it will
run all of the following:
rspec spec
cucumber features
ruby -e 'ARGV.each {|f| require f }' test/**/*_test.rb
polyamory <dirname>
- Runs all tests inside a subdirectory. For example:
polyamory models
-> runs test/models/**/*_test.rb
-> runs spec/models/**/*_spec.rb
polyamory <keyword>
- Runs all test files that match a keyword. For example:
polyamory search
-> runs test/models/user_search_test.rb
-> runs spec/controllers/search_controller_spec.rb
-> runs features/site_search.feature
polyamory <file>:<line>
- Runs focused test. Provides this feature for
test/unit and minitest which don't support it.
polyamory -n <pattern>
- Runs only tests whose names match given patterns.
polyamory -t <tag>
- Runs RSpec/Cucumber tests that match given tags.
Tag exclusion is done with ~<tag>
. Tag names are normalized for Cucumber
(which expects them in form of @<tag>
).
FAQs
Unknown package
We found that polyamory 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.