Skip to content

Latest commit

 

History

History
50 lines (34 loc) · 471 Bytes

PROJECTS.md

File metadata and controls

50 lines (34 loc) · 471 Bytes

Project Overview

MiniSpec

dotnet tool install MiniSpec

Intended to be a local tool only

dotnet minispec

- OR -

dotnet add package MiniSpec
MiniSpec.Tests.Run();

MiniSpec.Core

Standard .NET

Target all the things.

dotnet add package MiniSpec.Core
MiniSpec.Tests.Run();

Expect

dotnet add package Expect
using static Expect;

Expect("something").ToEqual("something")