summaryrefslogtreecommitdiff
path: root/core/source/test/scala/com/rockymadden/stringmetric/phonetic/RefinedSoundexMetricSpec.scala
diff options
context:
space:
mode:
Diffstat (limited to 'core/source/test/scala/com/rockymadden/stringmetric/phonetic/RefinedSoundexMetricSpec.scala')
-rwxr-xr-xcore/source/test/scala/com/rockymadden/stringmetric/phonetic/RefinedSoundexMetricSpec.scala50
1 files changed, 0 insertions, 50 deletions
diff --git a/core/source/test/scala/com/rockymadden/stringmetric/phonetic/RefinedSoundexMetricSpec.scala b/core/source/test/scala/com/rockymadden/stringmetric/phonetic/RefinedSoundexMetricSpec.scala
deleted file mode 100755
index cb6a222..0000000
--- a/core/source/test/scala/com/rockymadden/stringmetric/phonetic/RefinedSoundexMetricSpec.scala
+++ /dev/null
@@ -1,50 +0,0 @@
-package com.rockymadden.stringmetric.phonetic
-
-import com.rockymadden.stringmetric.ScalaTest
-import org.junit.runner.RunWith
-import org.scalatest.junit.JUnitRunner
-
-@RunWith(classOf[JUnitRunner])
-final class RefinedSoundexMetricSpec extends ScalaTest {
- import RefinedSoundexMetricSpec.Metric
-
- "RefinedSoundexMetric" should provide {
- "compare method" when passed {
- "empty arguments" should returns {
- "None" in {
- Metric.compare("", "").isDefined should be (false)
- Metric.compare("abc", "").isDefined should be (false)
- Metric.compare("", "xyz").isDefined should be (false)
- }
- }
- "non-phonetic arguments" should returns {
- "None" in {
- Metric.compare("123", "123").isDefined should be (false)
- Metric.compare("123", "").isDefined should be (false)
- Metric.compare("", "123").isDefined should be (false)
- }
- }
- "phonetically similar arguments" should returns {
- "Boolean indicating true" in {
- Metric.compare("robert", "rupert").get should be (true)
- }
- }
- "phonetically dissimilar arguments" should returns {
- "Boolean indicating false" in {
- Metric.compare("robert", "rubin").get should be (false)
- }
- }
- }
- }
- "RefinedSoundexMetric companion object" should provide {
- "pass-through compare method" should returns {
- "same value as class" in {
- RefinedSoundexMetric.compare("robert", "rubin").get should be (false)
- }
- }
- }
-}
-
-object RefinedSoundexMetricSpec {
- final private val Metric = RefinedSoundexMetric()
-}