add missing tests (that were not liked to the travis script)
This commit is contained in:
parent
a31f75fe93
commit
ed6fd91c4e
@ -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
|
||||||
|
@ -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"
|
||||||
|
@ -1,2 +1,3 @@
|
|||||||
require_relative "test_basic"
|
require_relative "test_basic"
|
||||||
require_relative "test_message"
|
require_relative "test_message"
|
||||||
|
require_relative "test_hash"
|
||||||
|
Loading…
Reference in New Issue
Block a user