-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #226 from hpi-swa/dev
Minor improvements
- Loading branch information
Showing
19 changed files
with
48 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 0 additions & 4 deletions
4
repository/SmalltalkCI-Core.package/SCIMetacelloLoadSpec.class/instance/ensureAuthor.st
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 7 additions & 0 deletions
7
repository/SmalltalkCI-Core.package/SCITestRunner.class/instance/printProgress..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
running | ||
printProgress: aTestResult | ||
SmalltalkCI stdout nextPut: (aTestResult passed | ||
ifTrue: [ $. ] | ||
ifFalse: [ (aTestResult failed) | ||
ifTrue: [ $F ] | ||
ifFalse: [ $E ] ]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...elloLoadSpec.class/class/defaultAuthor.st → .../SmalltalkCI.class/class/defaultAuthor.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
constants | ||
defaultAuthor | ||
^ 'TravisCI' | ||
^ 'smalltalkCI' |
4 changes: 4 additions & 0 deletions
4
repository/SmalltalkCI-Core.package/SmalltalkCI.class/class/ensureAuthor.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
helpers | ||
ensureAuthor | ||
self getAuthor ifEmpty: [ | ||
self setAuthor: self defaultAuthor ] |
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...elloLoadSpec.class/instance/initialize.st → .../SmalltalkCI.class/instance/initialize.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
initialize-release | ||
initialize | ||
self ensureAuthor | ||
self class ensureAuthor |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
14 changes: 0 additions & 14 deletions
14
repository/SmalltalkCI-Tests.package/SCIMetacelloLoadSpecTest.class/instance/testAuthor.st
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
repository/SmalltalkCI-Tests.package/SmalltalkCITest.class/instance/testAuthor.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
testing | ||
testAuthor | ||
| currentAuthor | | ||
currentAuthor := SmalltalkCI getAuthor. | ||
|
||
[ | ||
SmalltalkCI basicNew initialize. | ||
self deny: SmalltalkCI defaultAuthor isNil. | ||
] ensure: [ | ||
SmalltalkCI setAuthor: currentAuthor. | ||
self assert: SmalltalkCI getAuthor equals: currentAuthor ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters