Skip to content

Commit

Permalink
Split tests and importer
Browse files Browse the repository at this point in the history
  • Loading branch information
jecisc committed Aug 26, 2024
1 parent 97c22a5 commit 7a4f831
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions src/BaselineOfMoosePy/BaselineOfMoosePy.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,11 @@ BaselineOfMoosePy >> baseline: spec [
spec
package: 'Famix-Python-Entities';
package: 'Famix-Python-Generator';
package: 'Moose-Python-Importer' with: [ spec requires: #( 'Famix-Python-Entities' 'PythonParser' ) ].
package: 'Moose-Python-Importer' with: [ spec requires: #( 'Famix-Python-Entities' 'PythonParser' ) ];
package: 'Moose-Python-Importer-Tests' with: [ spec requires: #( 'Famix-Python-Importer' ) ].

spec
group: 'Core' with: #( 'Famix-Python-Entities' 'Moose-Python-Importer' );
group: 'Core' with: #( 'Famix-Python-Entities' 'Moose-Python-Importer' 'Moose-Python-Importer-Tests');
group: 'Generator' with: #( 'Core' 'Famix-Python-Generator' ) ].

spec for: #NeedsFamix do: [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@ Class {
'file2'
],
#category : 'Moose-Python-Importer-Tests',
#package : 'Moose-Python-Importer',
#tag : 'Tests'
#package : 'Moose-Python-Importer-Tests'
}

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

0 comments on commit 7a4f831

Please sign in to comment.