- Timestamp:
- 07/17/09 14:02:51 (3 years ago)
- Location:
- trunk/src
- Files:
-
- 3 edited
-
compiler_test.erl (modified) (2 diffs)
-
directory_watcher_test.erl (modified) (1 diff)
-
tests_test.erl (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/compiler_test.erl
r80 r82 16 16 17 17 compiles_and_reports_progress_warnings_and_errors () -> 18 Compiler = spawn_link (compiler, init, [notify_me (), " /home/dom/forge/fix"]),18 Compiler = spawn_link (compiler, init, [notify_me (), "fix"]), 19 19 Compiler ! check, 20 20 Ms = receive_all (), … … 23 23 24 24 stops () -> 25 Compiler = spawn_link (compiler, init, [notify_me (), " /home/com/forge/fix"]),25 Compiler = spawn_link (compiler, init, [notify_me (), "fix"]), 26 26 Compiler ! check, 27 27 receive_all (), -
trunk/src/directory_watcher_test.erl
r80 r82 78 78 79 79 insensitive_to_cwd () -> 80 Watcher = spawn_link (directory_watcher, init, [" /home/dom/forge/fix", send_me ()]),80 Watcher = spawn_link (directory_watcher, init, ["fix", send_me ()]), 81 81 receive_all (), 82 82 ok = file: set_cwd ("/tmp"), -
trunk/src/tests_test.erl
r80 r82 14 14 15 15 non_tests_returns_empty_list () -> 16 Binary = modules: to_binary (" /home/dom/forge/fix/eg_code.erl"),16 Binary = modules: to_binary ("../fix/eg_code.erl"), 17 17 {_, eg_code, []} = tests: filter_by_attribute (Binary). 18 18 19 19 test_exports_returns_list_of_tests_from_unloaded_binary () -> 20 File = " /home/dom/forge/fix/eg_test.erl",20 File = "../fix/eg_test.erl", 21 21 Binary = modules: to_binary (File), 22 22 false = code: is_loaded (eg_test), … … 25 25 26 26 test_non_exports_also () -> 27 File = " /home/dom/forge/fix/eg_test_not_exports.erl",27 File = "../fix/eg_test_not_exports.erl", 28 28 Binary = modules: to_binary (File), 29 29 false = code: is_loaded (eg_test_not_exports),
Note: See TracChangeset
for help on using the changeset viewer.
