Package org.sonatype.nexus.yum

Examples of org.sonatype.nexus.yum.YumRepository


  @Test
  public void shouldCacheRepository()
      throws Exception
  {
    final YumRepository repo1 = yum.getYumRepository(VERSION_1_0);
    final YumRepository repo2 = yum.getYumRepository(VERSION_1_0);

    Assert.assertEquals(repo1, repo2);
  }
View Full Code Here


  @Test
  public void shouldRecreateRepository()
      throws Exception
  {
    final YumRepository repo1 = yum.getYumRepository(VERSION_1_0);

    yum.markDirty(VERSION_1_0);

    YumRepository repo2 = yum.getYumRepository(VERSION_1_0);

    assertNotSame(repo1, repo2);
  }
View Full Code Here

TOP

Related Classes of org.sonatype.nexus.yum.YumRepository

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.