Skip to content

Commit

Permalink
Tests suite improved
Browse files Browse the repository at this point in the history
  • Loading branch information
AlanVerbner committed Sep 16, 2017
1 parent fa90136 commit 99444a8
Show file tree
Hide file tree
Showing 9 changed files with 6,245 additions and 21 deletions.
6 changes: 0 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,6 @@ bip39.check(sentence, EnglishWordList) shouldEqual true

```

### TODO

- [x] Japanese support
- [ ] Add more tests
- [ ] Allow custom wordlists

### API

```scala
Expand Down
5 changes: 3 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,16 @@ organization := "com.github.alanverbner"

name := "bip39"

version := "0.2"
version := "1.0"

scalaVersion := "2.12.3"

libraryDependencies ++= Seq(
"org.consensusresearch" %% "scrypto" % "1.2.0-RC3",
"org.scodec" %% "scodec-bits" % "1.1.5",

"org.scalatest" %% "scalatest" % "3.0.1" % "test"
"org.scalatest" %% "scalatest" % "3.0.1" % "test",
"org.scalacheck" %% "scalacheck" % "1.13.4" % "test"
)

useGpg := true
Expand Down
1 change: 1 addition & 0 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.0.0")
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "1.1")
addSbtPlugin("org.scalastyle" %% "scalastyle-sbt-plugin" % "1.0.0")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.5.1")

Loading

0 comments on commit 99444a8

Please sign in to comment.