add missing tests (that were not liked to the travis script)

This commit is contained in:
Torsten Ruger 2016-12-08 12:55:16 +02:00
parent a31f75fe93
commit ed6fd91c4e
3 changed files with 5 additions and 1 deletions

View File

@ -6,7 +6,7 @@ Good tests exists in the parts where functionality is clear: Parsing and binary
But it is difficult to write tests when you don't know what the functionality is. But it is difficult to write tests when you don't know what the functionality is.
Also TDD does not really help as it assumes you know what you're doing. Also TDD does not really help as it assumes you know what you're doing.
I used minitest / test-unit as the framewok, just because it is lighter and thus when the I used minitest as the framework, just because it is lighter and thus when the
time comes to move to salama, less work. time comes to move to salama, less work.
### All ### All

View File

@ -1,6 +1,9 @@
require_relative "elf/test_all" require_relative "elf/test_all"
require_relative "lib/test_all"
require_relative "register/test_all" require_relative "register/test_all"
require_relative "typed/parfait/test_all" require_relative "typed/parfait/test_all"
require_relative "typed/type/test_all" require_relative "typed/type/test_all"

View File

@ -1,2 +1,3 @@
require_relative "test_basic" require_relative "test_basic"
require_relative "test_message" require_relative "test_message"
require_relative "test_hash"