extends TestCase
{
public void testParsingUrlWithPipe()
throws ScmRepositoryException, IOException
{
Settings settings = new Settings();
String viewName = "my_module_view";
String configSpecPath = "//myserver/ClearCase/ConfigSpecs/mymodule.txt";
String url = viewName + "|" + configSpecPath;
ClearCaseScmProviderRepository repository = new ClearCaseScmProviderRepository( new DefaultLog(), url, settings);
assertEquals( new File( configSpecPath ).getPath(), repository.getConfigSpec().getPath() );