fOOrth/integration
2015-01-29 10:41:18 -05:00
..
support Fixed error reporting in foorth_raises. 2015-01-19 10:28:53 -05:00
array_library_tests.rb Fixed Array + to use in_array, and updated tests. 2015-01-11 18:30:27 -05:00
class_library_tests.rb Hid extraneous Ruby parent classes for Object and Class. 2015-01-14 11:51:26 -05:00
comparison_tests.rb Rebuilt the compare operator. 2015-01-10 20:59:43 -05:00
compile_library_tests.rb Another test case. 2015-01-13 18:25:55 -05:00
ctrl_struct_library_tests.rb Normalized the rules for the .with{ } construct. 2015-01-23 10:23:27 -05:00
data_ref_library_tests.rb Now using the minitest_visible gem. 2014-12-19 19:17:23 -05:00
hash_library_tests.rb Added .pp and .strmax2 methods to Hash. 2015-01-06 11:33:09 -05:00
in_stream_library_tests.rb Added ~gets to InStream 2015-01-25 19:23:21 -05:00
in_stream_test_1.txt Added .open, .close, and .gets to InStream. 2015-01-22 12:38:21 -05:00
load_test_one.foorth Added .load and load" to String. 2015-01-09 10:46:48 -05:00
numeric_library_tests.rb Added the .to_x! method. 2015-01-20 10:49:01 -05:00
object_library_tests.rb Rebuilt the greater than operator. 2015-01-10 20:19:26 -05:00
out_stream_library_tests.rb Added the .append{ } method to OutStream 2015-01-25 18:05:28 -05:00
procedure_library_tests.rb Restored .new{ }, added proper tests, add .start to procs. 2015-01-07 13:21:23 -05:00
README.md Added a README.md file for the integration tests. 2014-11-28 19:36:13 -05:00
standard_library_tests.rb Corrected the naming of the nil methods. 2015-01-12 17:02:43 -05:00
stdio_library_tests.rb The spaces stdio method now coerces the count to an Integer. 2015-01-25 14:38:08 -05:00
string_library_tests.rb Added integration tests for string literals. 2015-01-29 10:41:18 -05:00
thread_library_tests.rb Made the specs for .sleep test more lax. 2015-01-14 16:07:57 -05:00
vm_library_tests.rb Now using the minitest_visible gem. 2014-12-19 19:17:23 -05:00

The Integration Test Suite.

While the tests folder mostly focuses on the internals of fOOrth, and in fact does not even load the run time libraries, the integration test suite loads the entire fOOrth language in order to be able to conduct testing on the system as a whole.

This is done via the following rake command:

rake integration

Most of the integration testing is done in fOOrth itself.