Skip to content

Commit 75d8eec

Browse files
committed
1 parent 011ac76 commit 75d8eec

File tree

6 files changed

+79
-29
lines changed

6 files changed

+79
-29
lines changed

README.md

+13-13
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
# RowanSample9V3 - spec_0001
2-
Bare bones package structure -Core and -Tests
1+
# RowanSample9V3 - spec_0089
2+
Start with spec_0001 and add 6 methods with selectors to test that we are using unicode codepoints for sorting, not unicode sort order.
33
```
44
RwLoadSpecificationV2 {
5-
#specName : 'spec_0001',
5+
#specName : 'spec_0089',
66
#projectName : 'RowanSample9V3',
77
#gitUrl : '[email protected]:dalehenrich/RowanSample9V3.git',
8-
#revision : 'spec_0001',
8+
#revision : 'spec_0089',
99
#projectSpecFile : 'rowan/project.ston',
1010
#componentNames : [
1111
'Core'
@@ -20,21 +20,21 @@ RwLoadSpecificationV2 {
2020
}
2121
}
2222
},
23-
#comment : 'Bare bones package structure -Core and -Tests'
23+
#comment : 'Start with spec_0001 and add 6 methods with selectors to test that we are using unicode codepoints for sorting, not unicode sort order.'
2424
}
2525
2626
RwTestProjectLibraryIndexCard {
27-
#name : 'index_0001',
28-
#title : 'Bare bones package structure -Core and -Tests',
29-
#specName : 'spec_0001',
30-
#index : 1,
31-
#derivedFrom : 'spec_0000',
32-
#comment : 'One class per package: RowanSample9-Core and RowanSample9-Tests packages',
27+
#name : 'index_0089',
28+
#title : 'Start with spec_0001 and add 6 methods with selectors to test that we are using unicode codepoints for sorting, not unicode sort order.',
29+
#specName : 'spec_0089',
30+
#index : 89,
31+
#derivedFrom : 'spec_0001',
32+
#comment : '',
3333
#rowanIssues : [
34-
527
34+
953
3535
],
3636
#gemstoneIssues : [ ],
37-
#rowanSHA : '67c0952bc'
37+
#rowanSHA : 'c6254d045'
3838
}
3939
```
4040

index_0001.ston

-13
This file was deleted.

index_0089.ston

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
RwTestProjectLibraryIndexCard {
2+
#name : 'index_0089',
3+
#title : 'Start with spec_0001 and add 6 methods with selectors to test that we are using unicode codepoints for sorting, not unicode sort order.',
4+
#specName : 'spec_0089',
5+
#index : 89,
6+
#derivedFrom : 'spec_0001',
7+
#comment : '',
8+
#rowanIssues : [
9+
953
10+
],
11+
#gemstoneIssues : [ ],
12+
#rowanSHA : 'c6254d045'
13+
}

rowan/specs/spec_0001.ston rowan/specs/spec_0089.ston

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
RwLoadSpecificationV2 {
2-
#specName : 'spec_0001',
2+
#specName : 'spec_0089',
33
#projectName : 'RowanSample9V3',
44
#gitUrl : '[email protected]:dalehenrich/RowanSample9V3.git',
5-
#revision : 'spec_0001',
5+
#revision : 'spec_0089',
66
#projectSpecFile : 'rowan/project.ston',
77
#componentNames : [
88
'Core'
@@ -17,5 +17,5 @@ RwLoadSpecificationV2 {
1717
}
1818
}
1919
},
20-
#comment : 'Bare bones package structure -Core and -Tests'
20+
#comment : 'Start with spec_0001 and add 6 methods with selectors to test that we are using unicode codepoints for sorting, not unicode sort order.'
2121
}

src/RowanSample9V3-Core/RowanSample9V3Class1.class.st

+26
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,32 @@ Class {
1010
#category : 'RowanSample9V3-Core'
1111
}
1212

13+
{ #category : 'accessing' }
14+
RowanSample9V3Class1 class >> _123abc [
15+
^self
16+
]
17+
18+
{ #category : 'accessing' }
19+
RowanSample9V3Class1 class >> _abc123 [ ^self
20+
]
21+
22+
{ #category : 'accessing' }
23+
RowanSample9V3Class1 class >> _ABC123 [ ^self
24+
]
25+
26+
{ #category : 'accessing' }
27+
RowanSample9V3Class1 class >> a_bc123 [ ^self
28+
]
29+
30+
{ #category : 'accessing' }
31+
RowanSample9V3Class1 >> _123Abc [
32+
^self
33+
]
34+
35+
{ #category : 'accessing' }
36+
RowanSample9V3Class1 >> A_bc123 [ ^self
37+
]
38+
1339
{ #category : 'accessing' }
1440
RowanSample9V3Class1 >> foo [ ^1
1541
]

src/RowanSample9V3-Tests/RowanSample9V3TestCase.class.st

+24
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,27 @@ Class {
1010
{ #category : 'tests' }
1111
RowanSample9V3TestCase >> test [ self assert: RowanSample9V3Class1 new foo = 1
1212
]
13+
14+
{ #category : 'tests' }
15+
RowanSample9V3TestCase >> test3 [ self assert: RowanSample9V3Class1 new A_bc123
16+
]
17+
18+
{ #category : 'tests' }
19+
RowanSample9V3TestCase >> test4 [ self assert: RowanSample9V3Class1 new _123Abc
20+
]
21+
22+
{ #category : 'tests' }
23+
RowanSample9V3TestCase >> test5 [ self assert: RowanSample9V3Class1 new _123abc
24+
]
25+
26+
{ #category : 'tests' }
27+
RowanSample9V3TestCase >> test6 [ self assert: RowanSample9V3Class1 new _ABC123
28+
]
29+
30+
{ #category : 'tests' }
31+
RowanSample9V3TestCase >> test7 [ self assert: RowanSample9V3Class1 new _abc123
32+
]
33+
34+
{ #category : 'tests' }
35+
RowanSample9V3TestCase >> test8 [ self assert: RowanSample9V3Class1 new a_bc123
36+
]

0 commit comments

Comments
 (0)