Patch-coverage gate: checks that newly added lines meet per-path coverage thresholds. Supports per-suite LCOV accumulation for conditional CI.
Gate cargo-llvm-cov coverage by crate.
Property based testing framework for JavaScript (like QuickCheck)
A scaffolding tool allowing developers create react component with demo page, dev page with hot reloading, testing with coverage check.
Helper functions for V8 coverage files.
a CSS selector compiler/engine
Utility functions for working with TypeScript's API. Successor to the wonderful tsutils. 🛠️️
Use this module to start and stop the V8 inspector manually and collect precise coverage.
Data library for istanbul coverage objects
Utilities for checking the coverage produced by NYC against extra or missing files
The set of Unicode symbols that can serve as a base for emoji modifiers, i.e. those with the `Emoji_Modifier_Base` property set to `Yes`.
unist utility to check if a node passes a test
Large collection of predicates.
V8 coverage provider for Vitest
Utilities for ESLint plugins.
Work with IANA language tags.
TypeScript definitions for istanbul-lib-coverage
Is this specifier a node.js core module?
This library provides the functionality of PBKDF2 with the ability to use any supported hashing algorithm returned from crypto.getHashes()
ESLint rules for consistent filename and folder. Allows you to enforce a consistent naming pattern for the filename and folder
A scaffolding tool allowing developers create vue component with demo page, dev page with hot reloading, testing with coverage check, linting.
React Native Firebase - App Check
A babel plugin that adds istanbul instrumentation to ES6 code
hast utility to check if a node is a (certain) element
A lightweight LDAP server that serves directory data from YAML files
RPC library based on QUIC+TLS encryption
Provider-neutral OpenID/JWT RBAC middleware for Axum and Tower
Coverage statistics for Cocoa documentation sets
Speccloak is a CLI tool that reports whether the changed lines in your Git branch are covered by specs, using SimpleCov’s JSON output.
RubyAudit checks your current version of Ruby and RubyGems against known security vulnerabilities (CVEs), alerting you if you are using an insecure version. It complements bundler-audit, providing complete coverage for your Ruby stack.
This gem will check if a coverage file meets the expected level. If it doesn't it will exit with a exit code of 1. This can be used in tools such as Jenkins to check if the coverage meets the expected level.
A Ruby gem for checking the links in a web site. Can either scan files or crawl pages. Multi-threaded, with red/green colored output, support for SSL, and support for following redirects. Works great with Octopress, Jekyll, or any collection of static HTML files. With 100% RSpec coverage.
Evilution is a mutation testing tool for Ruby. It validates test suite quality by making small code changes and checking if tests catch them. AI-agent-first design with JSON output, diff-based targeting, and coverage-based filtering.
backend-toolkit =============== A set of classes that simplify building a scalable backend for your app. Requirements ---------------- * redis (server and ruby gem) * json gem Installation ---------------- $ gem install backend-toolkit Development & Testing ---------------- $ bundle install $ rake Usage ---------------- ```ruby require 'backend-toolkit' # TO DO ``` Contributions ---------------- * Check commits history and issue tracker to be sure that no one else is working on the feature you want or are fixing the bug you found. * Fork the project. * Create a feature/bugfix branch and work on it. * Please add all tests needed to have a reasonably coverage of the new feature or bug that you are fixing. * Rebase your branch and open a pull request. * Please don't mess with the Rakefile, version, or history. License, Authors & Contributors ------- Check LICENSE.txt and AUTHORS.txt
RubyAudit checks your current version of Ruby and RubyGems against known security vulnerabilities (CVEs), alerting you if you are using an insecure version. It complements bundler-audit, providing complete coverage for your Ruby stack. This is a fork of ruby_audit (https://rubygems.org/gems/ruby_audit) with JRuby compatibility fixes. Use the original gem unless you need JRuby support. All development happens upstream at https://github.com/civisanalytics/ruby_audit
Lookout-Rake Lookout-Rake provides Rake¹ tasks for testing using Lookout. ¹ See http://rake.rubyforge.org/ § Installation Install Lookout-Rake with % gem install lookout-rake § Usage Include the following code in your ‹Rakefile›: require 'lookout-rake-3.0' Lookout::Rake::Tasks::Test.new If the ‹:default› task hasn’t been defined it’ll be set to depend on the ‹:test› task. The ‹:check› task will also depend on the ‹:test› task. There’s also a ‹:test:coverage› task that gets defined that uses the coverage library that comes with Ruby 1.9 to check the test coverage when the tests are run. You can hook up your test task to use your Inventory¹: load File.expand_path('../lib/library-X.0/version.rb', __FILE__) Lookout::Rake::Tasks::Test.new :inventory => Library::Version Also, if you use the tasks that come with Inventory-Rake², the test task will hook into the inventory you tell them to use automatically, that is, the following will do: load File.expand_path('../lib/library-X.0/version.rb', __FILE__) Inventory::Rake::Tasks.define Library::Version Lookout::Rake::Tasks::Test.new For further usage information, see the {API documentation}³. ¹ Inventory: http://disu.se/software/inventory/ ² Inventory-Rake: http://disu.se/software/inventory-rake/ ³ API: http://disu.se/software/lookout-rake/api/Lookout/Rake/Tasks/Test/ § Integration To use Lookout together with Vim¹, place ‹contrib/rakelookout.vim› in ‹~/.vim/compiler› and add compiler rakelookout to ‹~/.vim/after/ftplugin/ruby.vim›. Executing ‹:make› from inside Vim will now run your tests and an errors and failures can be visited with ‹:cnext›. Execute ‹:help quickfix› for additional information. Another useful addition to your ‹~/.vim/after/ftplugin/ruby.vim› file may be nnoremap <buffer> <silent> <Leader>M <Esc>:call <SID>run_test()<CR> let b:undo_ftplugin .= ' | nunmap <buffer> <Leader>M' function! s:run_test() let test = expand('%') let line = 'LINE=' . line('.') if test =~ '^lib/' let test = substitute(test, '^lib/', 'test/', '') let line = "" endif execute 'make' 'TEST=' . shellescape(test) line endfunction Now, pressing ‹<Leader>M› will either run all tests for a given class, if the implementation file is active, or run the test at or just before the cursor, if the test file is active. This is useful if you’re currently receiving a lot of errors and/or failures and want to focus on those associated with a specific class or on a specific test. ¹ Find out more about Vim at http://www.vim.org/ § Financing Currently, most of my time is spent at my day job and in my rather busy private life. Please motivate me to spend time on this piece of software by donating some of your money to this project. Yeah, I realize that requesting money to develop software is a bit, well, capitalistic of me. But please realize that I live in a capitalistic society and I need money to have other people give me the things that I need to continue living under the rules of said society. So, if you feel that this piece of software has helped you out enough to warrant a reward, please PayPal a donation to now@disu.se¹. Thanks! Your support won’t go unnoticed! ¹ Send a donation: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=now%40disu%2ese&item_name=Nikolai%20Weibull%20Software%20Services § Reporting Bugs Please report any bugs that you encounter to the {issue tracker}¹. ¹ See https://github.com/now/lookout-rake/issues § Authors Nikolai Weibull wrote the code, the tests, the manual pages, and this README.
Contentful API wrapper library exposing an ActiveRecord-like interface
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.