Changeset 24


Ignore:
Timestamp:
02/28/08 16:12:12 (4 years ago)
Author:
dom
Message:

Simplify some file names

Location:
trunk
Files:
1 edited
2 moved

Legend:

Unmodified
Added
Removed
  • trunk/fix/eg_test_fix.erl

    r19 r24  
    33%%% See file COPYING. 
    44 
    5 -module (eg_test_with_fixture). 
     5-module (eg_test_fix). 
    66-export ([with_fixture/1, fixture/1]). 
    77-test ({?MODULE, fixture, [with_fixture]}). 
  • trunk/fix/eg_test_fix_nofix.erl

    r21 r24  
    1 -module (eg_test_with_and_without_fixture). 
     1-module (eg_test_fix_nofix). 
    22-export([without_fixture/0, fixture/1, with_fixture/1]). 
    33-test ([exports, {?MODULE, fixture, [with_fixture]}]). 
  • trunk/src/tests_test.erl

    r22 r24  
    2727 
    2828filtering_fixtured_tests_returns_list_of_fixture_fun_tuples () -> 
    29     File_name = "../fix/eg_test_with_fixture.erl", 
     29    File_name = "../fix/eg_test_fix.erl", 
    3030    Test = fun ([{Module, Fixture, Tests}]) -> 
    3131                   [ok] = Module: Fixture (Tests) 
    3232           end, 
    33     filtering (File_name, eg_test_with_fixture, Test). 
     33    filtering (File_name, eg_test_fix, Test). 
    3434     
    3535filtering_understands_mixed_export_and_fixtured_tests () -> 
    36     File_name = "../fix/eg_test_with_and_without_fixture.erl", 
     36    File_name = "../fix/eg_test_fix_nofix.erl", 
    3737    Test = fun ([{Module, Fixture, With}, Without]) -> 
    3838                   {'EXIT', {Reason, _}} = (catch Without ()), 
     
    4040                   [ok] = Module: Fixture (With) 
    4141           end, 
    42     filtering (File_name, eg_test_with_and_without_fixture, Test). 
     42    filtering (File_name, eg_test_fix_nofix, Test). 
    4343 
    4444filtering (File_name, Module, Test) -> 
Note: See TracChangeset for help on using the changeset viewer.