Skip to content
This repository has been archived by the owner on May 22, 2024. It is now read-only.

Commit

Permalink
Merge pull request #1 from jecisc/development
Browse files Browse the repository at this point in the history
development
  • Loading branch information
jecisc authored Nov 13, 2018
2 parents 6bc1407 + b140284 commit ead5f22
Show file tree
Hide file tree
Showing 15 changed files with 41 additions and 11 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
**/.DS_Store
.DS_STORE
8 changes: 8 additions & 0 deletions .smalltalk.ston
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
SmalltalkCISpec {
#loading : [
SCIMetacelloLoadSpec {
#baseline : 'Hashtable',
#directory : 'src'
}
]
}
8 changes: 8 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
language: smalltalk
sudo: false

os:
- linux

smalltalk:
- Pharo-7.0
13 changes: 12 additions & 1 deletion src/BaselineOfHashtable/BaselineOfHashtable.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,16 @@ Class {
{ #category : #baseline }
BaselineOfHashtable >> baseline: spec [
<baseline>
spec for: #common do: [ "Packages" spec package: 'Hashtable' ]
spec
for: #common
do: [
"Packages"
spec
package: 'Hashtable';
package: 'Hashtable-Tests' with: [ spec requires: #('Hashtable') ].

"Groups"
spec
group: 'Core' with: #('Hashtable');
group: 'Tests' with: #('Hashtable-Tests') ]
]
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Class {
'stepsize',
'testsize'
],
#category : #'Hashtable-Test'
#category : #'Hashtable-Tests'
}

{ #category : #finding }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Class {
#instVars : [
'bag'
],
#category : #'Hashtable-Test'
#category : #'Hashtable-Tests'
}

{ #category : #running }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Class {
#instVars : [
'set'
],
#category : #'Hashtable-Test'
#category : #'Hashtable-Tests'
}

{ #category : #'as yet unclassified' }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Class {
'table',
'testsize'
],
#category : #'Hashtable-Test'
#category : #'Hashtable-Tests'
}

{ #category : #running }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Class {
#instVars : [
'bag'
],
#category : #'Hashtable-Test'
#category : #'Hashtable-Tests'
}

{ #category : #running }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Class {
#instVars : [
'set'
],
#category : #'Hashtable-Test'
#category : #'Hashtable-Tests'
}

{ #category : #running }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Class {
'table',
'testsize'
],
#category : #'Hashtable-Test'
#category : #'Hashtable-Tests'
}

{ #category : #running }
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Class {
#name : #WeakHashSetTest,
#superclass : #HashSetTest,
#category : #'Hashtable-Test'
#category : #'Hashtable-Tests'
}

{ #category : #running }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Class {
'table',
'testsize'
],
#category : #'Hashtable-Test'
#category : #'Hashtable-Tests'
}

{ #category : #running }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Class {
'table',
'testsize'
],
#category : #'Hashtable-Test'
#category : #'Hashtable-Tests'
}

{ #category : #running }
Expand Down
1 change: 1 addition & 0 deletions src/Hashtable-Tests/package.st
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Package { #name : #'Hashtable-Tests' }

0 comments on commit ead5f22

Please sign in to comment.