You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+16-2
Original file line number
Diff line number
Diff line change
@@ -9,13 +9,27 @@ Various tests for IRC parsers so people can check to ensure they're consistent.
9
9
10
10
There are two included tests used to test these vectors, the Python and Golang programs.
11
11
12
+
12
13
### Python
13
14
14
15
The `test.py` script uses the [girc](https://github.com/DanielOaks/girc) and [ircmatch](https://github.com/mammon-ircd/ircmatch>) libraries as reference implementations.
15
16
16
-
To install these libraries, run `pip3 install --upgrade girc ircmatch`.
17
+
To install these libraries, run:
18
+
19
+
pip3 install --upgrade girc ircmatch
20
+
21
+
After that, simply run the script with `python3 test.py` in the root dir. This will test everything we can test, and show the output.
22
+
23
+
24
+
### Go
25
+
26
+
The `test.go` script uses the [girc-go](https://github.com/DanielOaks/girc-go) packages as reference implementations.
27
+
28
+
To install these packages, run:
29
+
30
+
go get -u ./...
17
31
18
-
After that, simply run `python3 test.py`. This will test everything we can test, and show the output.
32
+
After that, simply run the script with `go run test.go run` in the root dir. This will test everything we can test, and show the output.
0 commit comments