Skip to content

Commit 8c5e3a7

Browse files
committed
defined the properties and the baseline
1 parent 9461646 commit 8c5e3a7

File tree

4 files changed

+25
-0
lines changed

4 files changed

+25
-0
lines changed

.project

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
'srcDirectory' : 'src'
3+
}

src/.properties

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
#format : #tonel
3+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
Class {
2+
#name : #BaselineOfPythonBridge,
3+
#superclass : #BaselineOf,
4+
#category : #BaselineOfPythonBridge
5+
}
6+
7+
{ #category : #baselines }
8+
BaselineOfPythonBridge >> baseline: spec [
9+
<baseline>
10+
spec
11+
for: #common
12+
do: [
13+
spec
14+
package: 'PythonBridge'.
15+
16+
spec group: 'default' with: #('PythonBridge').
17+
spec group: 'Tests' with: #('PythonBridge' ) ]
18+
]

src/BaselineOfPythonBridge/package.st

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Package { #name : #BaselineOfPythonBridge }

0 commit comments

Comments
 (0)