Changeset 35 for trunk/src/tests.erl


Ignore:
Timestamp:
08/22/08 19:01:40 (4 years ago)
Author:
dom
Message:

Add support for -test attribute with explicit list (not exports).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/tests.erl

    r34 r35  
    1818    Tests = lists: foldl (fun testable_export/2, [], Exports), 
    1919    filter (Binary, Tail, [Tests | Acc]); 
     20filter (Binary, [Test | Tail], Acc) -> 
     21    filter (Binary, Tail, [Test | Acc]); 
    2022filter (_, [], Acc) -> 
    2123    lists: flatten (Acc). 
Note: See TracChangeset for help on using the changeset viewer.