Skip to content
This repository has been archived by the owner on Dec 4, 2022. It is now read-only.

Commit

Permalink
- Expanded Madara.lua
Browse files Browse the repository at this point in the history
  • Loading branch information
doomsdayrs committed Mar 27, 2020
1 parent 08ea136 commit bad3ccd
Showing 1 changed file with 14 additions and 9 deletions.
23 changes: 14 additions & 9 deletions src/test/kotlin/app/shosetsu/lib/Test.kt
Original file line number Diff line number Diff line change
Expand Up @@ -29,18 +29,22 @@ import java.util.concurrent.TimeUnit.MILLISECONDS
* In IDEA, The Classpath should be shosetsu-services but the Working directory should be shosetsu-extensions.
*/
object Test {
// CONFIG
private const val SEARCH_VALUE = "world"
private const val PRINT_LISTINGS = false
private const val PRINT_LIST_STATS = true
private const val PRINT_NOVELS = false
private const val PRINT_NOVEL_STATS = true
private const val PRINT_PASSAGES = false
// CONFIG
private const val SEARCH_VALUE = "world"
private const val PRINT_LISTINGS = false
private const val PRINT_LIST_STATS = true
private const val PRINT_NOVELS = false
private const val PRINT_NOVEL_STATS = true
private const val PRINT_PASSAGES = false


private val SOURCES = arrayOf(
"en/MTLNovel"
).map { "src/main/resources/src/$it.lua" }
"en/BoxNovel",
"en/Foxaholic",
"en/KissLightNovels",
"en/NovelTrench",
"en/ReadNovelForLife"
).map { "src/main/resources/src/$it.lua" }

private val REPORTER: (String) -> Unit = { println("Progress: $it") }
// END CONFIG
Expand Down Expand Up @@ -98,6 +102,7 @@ object Test {

println("ID : ${formatter.formatterID}")
println("Name : ${formatter.name}")
println("BaseURL : ${formatter.baseURL}")
println("Image : ${formatter.imageURL}")
println("Settings : ${formatter.settings}")
println("Filters : ${formatter.searchFilters}")
Expand Down

0 comments on commit bad3ccd

Please sign in to comment.