Compare commits

..

No commits in common. "main" and "v0.1.2" have entirely different histories.
main ... v0.1.2

2 changed files with 1 additions and 9 deletions

View File

@ -27,7 +27,7 @@ dependencies {
### Documentation ### Documentation
Use autocompletion and hover menus in your IDE, or download the Use autocompletion and hover menus in your IDE, or download the
generated HTML documentation [generated HTML documentation](https://git.koval.net/cyclane/teamcity-gitea-test-task/releases/download/v0.1.1/tinyvm-0.1.1-javadoc.zip)
from the [latest release](https://git.koval.net/cyclane/teamcity-gitea-test-task/releases). from the [latest release](https://git.koval.net/cyclane/teamcity-gitea-test-task/releases).
## Instructions ## Instructions

View File

@ -1,6 +1,5 @@
package tinyvm package tinyvm
import org.junit.jupiter.api.assertThrows
import java.time.Instant import java.time.Instant
import kotlin.test.Test import kotlin.test.Test
import kotlin.test.assertEquals import kotlin.test.assertEquals
@ -133,13 +132,6 @@ internal class RepositoryTest {
assertEquals(10, repository.dumpObjects().size) assertEquals(10, repository.dumpObjects().size)
} }
@Test
fun `cannot use non-existent branch`() {
assertThrows<BranchNotFoundException> {
repository.useBranch("test-branch")
}
}
@Test @Test
fun `can commit to branch`() { fun `can commit to branch`() {
repository.commit(commits[0]) repository.commit(commits[0])