Skip to content

Commit

Permalink
Update building-the-ocaml-gpt-library.md
Browse files Browse the repository at this point in the history
Correct the author of Alcotest, pointed out by @pitag-ha
  • Loading branch information
PizieDust authored Aug 8, 2023
1 parent ad19eb3 commit b7edfd7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion data/planet/pizie-dust/building-the-ocaml-gpt-library.md
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ At this point all that's left to do is code our modules, types and methods.

## Writing Test
Tests are a great way to verify our code is working as we expect it to. It also helps maintain a standard as we continue updating our code. Writing Unit tests is definitely important.
In our project, we are using the [`Alcotest`](https://opam.ocaml.org/packages/alcotest/) library to conduct our tests. This is an awesome library and many thanks to [Thomas Gazagnaire](https://fr.linkedin.com/in/tgazagna) for creating this beatiful package and the whole OCaml Opensource community for maintaining.
In our project, we are using the [`Alcotest`](https://opam.ocaml.org/packages/alcotest/) library to conduct our tests. This is an awesome library and many thanks to [Craig Ferguson](https://www.craigfe.io/) for creating this beatiful package and the whole OCaml Opensource community for maintaining.

Using Alcotest, we can test different parts of our code and even the different functions we have in our code. For our library we wrote the following test:

Expand Down

0 comments on commit b7edfd7

Please sign in to comment.