#!/bin/sh

#
#       module Explor
#

echo  \|-------------------------------------- module Explor
echo  \|

cat $DILIB_IMPORT/Explor/Test/ExplorParam.test.wiki | ExplorParamDictFromWiki >  $DILIB/MakeDir/Explor.test1.data

diff  $DILIB/MakeDir/Explor.test1.data \
      $DILIB_IMPORT/Explor/Test/ExplorParam.test.target \
      >  $DILIB/MakeDir/Explor.test1.diff

if test -s $DILIB/MakeDir/Explor.test1.diff
then
  echo Explor "****************************** ERROR Explor test1 *****"
else
  echo ----- Explor Test 1 OK
  rm $DILIB/MakeDir/Explor.test1.diff
  rm $DILIB/MakeDir/Explor.test1.data
fi
