diff --git a/test/README.md b/test/README.md index 18fe7694..674046a8 100644 --- a/test/README.md +++ b/test/README.md @@ -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. 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. ### All diff --git a/test/test_all.rb b/test/test_all.rb index 4379755f..d4035c33 100644 --- a/test/test_all.rb +++ b/test/test_all.rb @@ -1,6 +1,9 @@ require_relative "elf/test_all" +require_relative "lib/test_all" + require_relative "register/test_all" require_relative "typed/parfait/test_all" + require_relative "typed/type/test_all" diff --git a/test/typed/type/test_all.rb b/test/typed/type/test_all.rb index c3f9d16e..ecc17c4c 100644 --- a/test/typed/type/test_all.rb +++ b/test/typed/type/test_all.rb @@ -1,2 +1,3 @@ require_relative "test_basic" require_relative "test_message" +require_relative "test_hash"