Files
42test/README.md

37 lines
675 B
Markdown
Raw Normal View History

2021-10-22 06:32:16 +00:00
# 42test
2021-10-22 10:26:25 +02:00
Unit Testing for 42 Projects
2021-10-22 10:53:42 +02:00
## Setup
```
2021-10-22 11:19:09 +02:00
git clone --recurse-submodules https://vogsphere.baco.net/baco/42test.git 42test
2021-10-22 10:56:37 +02:00
cd 42test
2021-10-22 11:14:51 +02:00
git config pull.rebase false
git config user.name "marvin"
git config user.email "marvin@42lausanne.ch"
2021-10-22 10:56:37 +02:00
# -OR-
git clone https://vogsphere.baco.net/baco/42test.git
cd 42test
2021-10-22 10:53:42 +02:00
git submodule update --init
2021-10-22 11:14:51 +02:00
git config pull.rebase false
git config user.name "marvin"
git config user.email "marvin@42lausanne.ch"
2021-10-22 10:53:42 +02:00
```
2021-10-22 11:08:18 +02:00
## Update
```
cd 42test
git pull
```
2021-10-22 11:20:28 +02:00
## LibFT Unit Testing
Library Forty-Two like a mini Libc for string and memory functions.
- Follow the [libft](https://vogsphere.baco.net/baco/42test/src/branch/master/libft)