Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mikaello/pesy_test
A basic esy project started with pesy, using dependency @opam/levenshtein
https://github.com/mikaello/pesy_test
Last synced: 23 days ago
JSON representation
A basic esy project started with pesy, using dependency @opam/levenshtein
- Host: GitHub
- URL: https://github.com/mikaello/pesy_test
- Owner: mikaello
- Created: 2018-12-19T08:02:13.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2018-12-19T08:02:38.000Z (about 6 years ago)
- Last Synced: 2024-10-05T16:22:23.974Z (3 months ago)
- Language: OCaml
- Size: 22.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# pesy_test
[![CircleCI](https://circleci.com/gh/yourgithubhandle/pesy_test/tree/master.svg?style=svg)](https://circleci.com/gh/yourgithubhandle/pesy_test/tree/master)
**Contains the following libraries and executables:**
```
[email protected]
│
├─test/
│ name: TestPesyTest.exe
│ main: TestPesyTest
│ require: pesy_test.lib
│
├─library/
│ library name: pesy_test.lib
│ namespace: PesyTest
│ require:
│
└─executable/
name: PesyTestApp.exe
main: PesyTestApp
require: pesy_test.lib
```## Developing:
```
npm install -g esy
git clone
esy install
esy build
```## Running Binary:
After building the project, you can run the main binary that is produced.
```
esy x PesyTestApp.exe
```## Running Tests:
```
# Runs the "test" command in `package.json`.
esy test
```