/testable

Empty test templates for different programming languages

Primary LanguageRust

Programming Language Test Harnesses

This repository contains skeleton projects for common programming languages that enable me to quickly write some code with unit testing setup and ready to go.

Elixir

Using Elixir's built in ExUnit test framework:

> mix test

Ruby

Using Ruby's minitest framework:

> bundle install
> rake test

Javascript

Using Ava as the test framework:

> npm install
> npm test

Go

Using Go's built in testing package:

> go install
> go test

Rust

Using Rust's built in testing framework:

> cargo test