RegressionTests__DoubleMetaphoneStringComparatorTest.st
changeset 1447 2351db93aa5b
parent 543 bcb8e4c9c201
child 1500 d406a10b2965
child 2041 9afa32f02da6
--- a/RegressionTests__DoubleMetaphoneStringComparatorTest.st	Wed Jun 29 13:00:17 2016 +0000
+++ b/RegressionTests__DoubleMetaphoneStringComparatorTest.st	Wed Jun 29 15:55:29 2016 +0200
@@ -1,4 +1,4 @@
-"{ Package: 'exept:regression' }"
+"{ Package: 'stx:goodies/regression' }"
 
 "{ NameSpace: RegressionTests }"
 
@@ -17,7 +17,7 @@
 
 setUp
 
-        dmsc := PhoneticStringUtilities::DoubleMetaphoneStringComparator new
+	dmsc := PhoneticStringUtilities::DoubleMetaphoneStringComparator new
 ! !
 
 !DoubleMetaphoneStringComparatorTest methodsFor:'tests'!
@@ -99,18 +99,18 @@
 !
 
 testProcessB1
-        dmsc inputKey: 'b'.
-        self should: [ dmsc inputKey = 'B' ].
-
-        self should: [ dmsc primaryTranslation = '' ].
-        self should: [ dmsc secondaryTranslation = '' ].
-        self should: [ dmsc skipCount = 0 ].
-
-        dmsc processB.
-
-        self should: [ dmsc primaryTranslation = 'P' ].
-        self should: [ dmsc secondaryTranslation = 'P' ].
-        self should: [ dmsc skipCount = 0 ]
+	dmsc inputKey: 'b'.
+	self should: [ dmsc inputKey = 'B' ].
+
+	self should: [ dmsc primaryTranslation = '' ].
+	self should: [ dmsc secondaryTranslation = '' ].
+	self should: [ dmsc skipCount = 0 ].
+
+	dmsc processB.
+
+	self should: [ dmsc primaryTranslation = 'P' ].
+	self should: [ dmsc secondaryTranslation = 'P' ].
+	self should: [ dmsc skipCount = 0 ]
 !
 
 testProcessB2
@@ -1471,19 +1471,19 @@
 !
 
 testProcessNtilde
-        dmsc inputKey: 'Naņa'.
-        self should: [ dmsc inputKey = 'NAŅA' ].
-
-        self should: [ dmsc primaryTranslation = '' ].
-        self should: [ dmsc secondaryTranslation = '' ].
-        self should: [ dmsc skipCount = 0 ].
-        dmsc currentIndex: 3.
-
-        dmsc processNtilde.
-
-        self should: [ dmsc primaryTranslation = 'N' ].
-        self should: [ dmsc secondaryTranslation = 'N' ].
-        self should: [ dmsc skipCount = 0 ].
+	dmsc inputKey: 'Naņa'.
+	self should: [ dmsc inputKey = 'NAŅA' ].
+
+	self should: [ dmsc primaryTranslation = '' ].
+	self should: [ dmsc secondaryTranslation = '' ].
+	self should: [ dmsc skipCount = 0 ].
+	dmsc currentIndex: 3.
+
+	dmsc processNtilde.
+
+	self should: [ dmsc primaryTranslation = 'N' ].
+	self should: [ dmsc secondaryTranslation = 'N' ].
+	self should: [ dmsc skipCount = 0 ].
 !
 
 testProcessP