Skip to content

Commit

Permalink
moved package, tests pass
Browse files Browse the repository at this point in the history
  • Loading branch information
sanity committed Mar 16, 2020
1 parent 91fa6a0 commit 4581004
Show file tree
Hide file tree
Showing 13 changed files with 27 additions and 44 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
group 'io.kweb'
version '0.2.33'
group 'kweb'
version '0.2.34'

buildscript {
ext.kotlin_version = '1.3.61'
ext.kotlin_version = '1.3.70'
ext.dokka_version = '0.9.18'

repositories {
Expand Down
8 changes: 4 additions & 4 deletions src/main/kotlin/kweb/shoebox/Shoebox.kt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package kweb.shoebox

import io.kweb.shoebox.Source.LOCAL
import io.kweb.shoebox.View.*
import io.kweb.shoebox.View.VerifyBehavior.BLOCKING_VERIFY
import io.kweb.shoebox.stores.*
import kweb.shoebox.Source.LOCAL
import kweb.shoebox.View.*
import kweb.shoebox.View.VerifyBehavior.BLOCKING_VERIFY
import kweb.shoebox.stores.*
import java.nio.file.Path
import java.util.concurrent.ConcurrentHashMap
import kotlin.reflect.KClass
Expand Down
4 changes: 2 additions & 2 deletions src/main/kotlin/kweb/shoebox/View.kt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package kweb.shoebox

import io.kweb.shoebox.Source.LOCAL
import io.kweb.shoebox.View.VerifyBehavior.*
import kweb.shoebox.Source.LOCAL
import kweb.shoebox.View.VerifyBehavior.*
import java.util.*
import java.util.concurrent.ConcurrentHashMap
import kotlin.concurrent.thread
Expand Down
4 changes: 2 additions & 2 deletions src/main/kotlin/kweb/shoebox/samples/samples.kt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package kweb.shoebox.samples

import io.kweb.shoebox.Shoebox
import io.kweb.shoebox.View
import kweb.shoebox.Shoebox
import kweb.shoebox.View
import java.nio.file.Files

/**
Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/kweb/shoebox/stores/DirectoryStore.kt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import com.google.common.cache.*
import com.google.common.cache.CacheLoader.InvalidCacheLoadException
import com.google.gson.*
import com.google.gson.reflect.TypeToken
import io.kweb.shoebox.*
import kweb.shoebox.*
import java.net.URLDecoder
import java.nio.file.*
import java.nio.file.attribute.FileTime
Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/kweb/shoebox/stores/LmdbStore.kt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package kweb.shoebox.stores
import com.fatboyindustrial.gsonjavatime.Converters
import com.google.gson.*
import com.google.gson.reflect.TypeToken
import io.kweb.shoebox.*
import kweb.shoebox.*
import java.nio.file.*
import java.time.*
import kotlin.reflect.KClass
Expand Down
4 changes: 2 additions & 2 deletions src/main/kotlin/kweb/shoebox/stores/MemoryStore.kt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package kweb.shoebox.stores

import io.kweb.shoebox.KeyValue
import io.kweb.shoebox.Store
import kweb.shoebox.KeyValue
import kweb.shoebox.Store
import java.util.concurrent.ConcurrentHashMap

/**
Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/kweb/shoebox/utils.kt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package kweb.shoebox

import com.google.gson.*
import io.kweb.shoebox.BinarySearchResult.*
import kweb.shoebox.BinarySearchResult.*
import java.lang.reflect.Type
import java.nio.file.*
import java.time.*
Expand Down
6 changes: 3 additions & 3 deletions src/test/kotlin/kweb/shoebox/OrderedViewSetSpec.kt
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ package kweb.shoebox

import io.kotlintest.matchers.*
import io.kotlintest.specs.FreeSpec
import io.kweb.shoebox.data.Gender.*
import io.kweb.shoebox.data.User
import io.kweb.shoebox.stores.MemoryStore
import kweb.shoebox.data.Gender.*
import kweb.shoebox.data.User
import kweb.shoebox.stores.MemoryStore

/**
* Created by ian on 3/14/17.
Expand Down
4 changes: 2 additions & 2 deletions src/test/kotlin/kweb/shoebox/ShoeboxSpec.kt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package kweb.shoebox

import io.kweb.shoebox.stores.MemoryStore
import kweb.shoebox.stores.MemoryStore
import io.kotlintest.matchers.shouldBe
import io.kotlintest.matchers.shouldEqual
import io.kotlintest.specs.FreeSpec
import io.kweb.shoebox.Source.LOCAL
import kweb.shoebox.Source.LOCAL
import java.util.concurrent.atomic.AtomicInteger

/**
Expand Down
13 changes: 0 additions & 13 deletions src/test/kotlin/kweb/shoebox/UtilsKtSpec.kt

This file was deleted.

12 changes: 4 additions & 8 deletions src/test/kotlin/kweb/shoebox/ViewSpec.kt
Original file line number Diff line number Diff line change
@@ -1,14 +1,10 @@
package kweb.shoebox

import io.kweb.shoebox.data.Gender.FEMALE
import io.kweb.shoebox.data.Gender.MALE
import io.kweb.shoebox.data.User
import io.kweb.shoebox.stores.MemoryStore
import io.kotlintest.matchers.beEmpty
import io.kotlintest.matchers.should
import io.kotlintest.matchers.shouldEqual
import io.kotlintest.matchers.*
import io.kotlintest.specs.FreeSpec
import java.lang.AssertionError
import kweb.shoebox.data.Gender.*
import kweb.shoebox.data.User
import kweb.shoebox.stores.MemoryStore
import java.util.concurrent.atomic.AtomicInteger

/**
Expand Down
4 changes: 2 additions & 2 deletions src/test/kotlin/kweb/shoebox/stores/DirectoryStoreSpec.kt
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ package kweb.shoebox.stores

import io.kotlintest.matchers.*
import io.kotlintest.specs.FreeSpec
import io.kweb.shoebox.ShoeboxSpec
import io.kweb.shoebox.ShoeboxSpec.TestData
import kweb.shoebox.ShoeboxSpec
import kweb.shoebox.ShoeboxSpec.TestData
import java.nio.file.Files
import java.nio.file.attribute.FileTime

Expand Down

0 comments on commit 4581004

Please sign in to comment.