You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
xpetit 905b3bd932
Refactor the way Go exercises are tested to make it easy to test
4 years ago
..
base Switch to Go modules, update Go version 4 years ago
func Switch to Go modules, update Go version 4 years ago
lib Refactor the way Go exercises are tested to make it easy to test 4 years ago
prog Switch to Go modules, update Go version 4 years ago
rc Avoids that the rc crashes when encountering more than one package 4 years ago
Dockerfile Update dependencies 4 years ago
README.md Refactor the way Go exercises are tested to make it easy to test 4 years ago
entrypoint.sh Refactor the way Go exercises are tested to make it easy to test 4 years ago
go.mod Put back student repository as read-only #3 4 years ago
go.sum Switch to Go modules, update Go version 4 years ago

README.md

Tests

To run the tests make sure the two repositories are right next to each other:

  • github.com/01-edu/piscine-go
  • github.com/01-edu/public

To test a program, run this command in this folder (public/go/tests):

go run github.com/01-edu/public/go/tests/func/EXERCISE_test

and a program:

go run github.com/01-edu/public/go/tests/prog/EXERCISE_test

Relative paths works anywhere within public/go/tests:

go run ./prog/printalphabet_test
cd prog
go run ./printalphabet_test
go run ../func/isnegative_test/

No output means success.