Changeset 19383

Show
Ignore:
Timestamp:
09/16/08 22:47:08 (5 years ago)
Author:
tokuhirom
Message:

fixed test counter

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lang/cplusplus/llv8call/trunk/t/05_dir.js

    r19377 r19383  
    11require('t/util.js'); 
    22 
    3 Test.More.plan({tests : 1}); 
     3Test.More.plan({tests : 3}); 
    44 
    55var d = new Dir("t"); 
     
    1515d.Close(); 
    1616 
     17if (File.Access("t/testdir", File.ACCESS_EXISTS)) { 
     18    Dir.RmDir("t/testdir"); 
     19} 
     20 
    1721Dir.MkDir("t/testdir"); 
    1822Test.More.ok( File.Access("t/testdir", File.ACCESS_EXISTS) );