-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2de178a
commit 8156cb8
Showing
25 changed files
with
25 additions
and
22 deletions.
There are no files selected for viewing
2 changes: 1 addition & 1 deletion
2
...es/AutoTDD-Core.package/ATDDRemoteClient.class/instance/throwExceptionForResponseCode..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,4 +1,4 @@ | ||
accessing | ||
exception handling | ||
throwExceptionForResponseCode: aNumber | ||
|
||
^ (self errorDictionary at: aNumber ifAbsent: [ Error ]) signal |
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 @@ | ||
An ATDDAccessDeniedError is thrown when the HTTP request results in a 403 (Forbidden) Error. |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
An ATDDConnectionError is thrown when the HTTP request results in a 401 (Unauthorized) Error. |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
An ATDDNotFoundError is thrown when the HTTP request results in a 404 (Not Found) Error. |
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
packages/AutoTDD-GUI.package/ATDDGitHubActionEditor.class/instance/hasValidUrl.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,4 +1,4 @@ | ||
action | ||
testing | ||
hasValidUrl | ||
|
||
| client | | ||
|
2 changes: 1 addition & 1 deletion
2
packages/AutoTDD-GUI.package/ATDDRemoteEditor.class/instance/applyChanges.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,4 +1,4 @@ | ||
accessing | ||
behavior | ||
applyChanges | ||
|
||
super applyChanges. | ||
|
2 changes: 1 addition & 1 deletion
2
packages/AutoTDD-GUI.package/ATDDRemoteEditor.class/instance/buildInputFieldsWith..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,4 +1,4 @@ | ||
accessing | ||
building | ||
buildInputFieldsWith: aBuilder | ||
|
||
^ OrderedCollection new | ||
|
2 changes: 1 addition & 1 deletion
2
packages/AutoTDD-GUI.package/ATDDRemoteEditor.class/instance/buildIntervalWith..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,4 +1,4 @@ | ||
accessing | ||
building | ||
buildIntervalWith: aBuilder | ||
|
||
^ aBuilder pluggableInputFieldSpec new | ||
|
2 changes: 1 addition & 1 deletion
2
packages/AutoTDD-GUI.package/ATDDRemoteEditor.class/instance/buildRepositoryUrlWith..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,4 +1,4 @@ | ||
accessing | ||
building | ||
buildRepositoryUrlWith: aBuilder | ||
|
||
^ aBuilder pluggableInputFieldSpec new | ||
|
2 changes: 1 addition & 1 deletion
2
packages/AutoTDD-GUI.package/ATDDRemoteEditor.class/instance/buildTokenWith..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,4 +1,4 @@ | ||
accessing | ||
building | ||
buildTokenWith: aBuilder | ||
|
||
^ aBuilder pluggableInputFieldSpec new | ||
|
2 changes: 1 addition & 1 deletion
2
packages/AutoTDD-GUI.package/ATDDRemoteEditor.class/instance/hasVaildRefreshInterval.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,4 +1,4 @@ | ||
accessing | ||
testing | ||
hasVaildRefreshInterval | ||
|
||
^ refreshInterval contents asString isAllDigits and: [ refreshInterval contents asString isEmpty not ] |
2 changes: 1 addition & 1 deletion
2
packages/AutoTDD-GUI.package/ATDDRemoteEditor.class/instance/hasVaildSlug.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,4 +1,4 @@ | ||
accessing | ||
testing | ||
hasVaildSlug | ||
|
||
^ self repositoryUrl asString matchesRegex: self class validSlug |
2 changes: 1 addition & 1 deletion
2
packages/AutoTDD-GUI.package/ATDDRemoteEditor.class/instance/initializeInputFields.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,4 +1,4 @@ | ||
accessing | ||
initialization | ||
initializeInputFields | ||
|
||
super initializeInputFields. | ||
|
2 changes: 1 addition & 1 deletion
2
packages/AutoTDD-GUI.package/ATDDRemoteEditor.class/instance/initializeInterval.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,4 +1,4 @@ | ||
accessing | ||
initialization | ||
initializeInterval | ||
|
||
refreshInterval := ValueHolder new contents: ''. | ||
|
2 changes: 1 addition & 1 deletion
2
packages/AutoTDD-GUI.package/ATDDRemoteEditor.class/instance/initializeRepositoryUrl.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,4 +1,4 @@ | ||
accessing | ||
initialization | ||
initializeRepositoryUrl | ||
|
||
repositoryUrl := ValueHolder new contents: ''. | ||
|
2 changes: 1 addition & 1 deletion
2
packages/AutoTDD-GUI.package/ATDDRemoteEditor.class/instance/initializeToken.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,4 +1,4 @@ | ||
accessing | ||
initialization | ||
initializeToken | ||
|
||
token := ValueHolder new contents: ''. | ||
|
2 changes: 1 addition & 1 deletion
2
packages/AutoTDD-GUI.package/ATDDRemoteEditor.class/instance/intervalFrame.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,4 +1,4 @@ | ||
accessing | ||
building | ||
intervalFrame | ||
|
||
^ LayoutFrame new | ||
|
2 changes: 1 addition & 1 deletion
2
packages/AutoTDD-GUI.package/ATDDRemoteEditor.class/instance/loadTargetSpecs.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,4 +1,4 @@ | ||
accessing | ||
behavior | ||
loadTargetSpecs | ||
|
||
self | ||
|
2 changes: 1 addition & 1 deletion
2
packages/AutoTDD-GUI.package/ATDDRemoteEditor.class/instance/repositoryUrlFrame.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,4 +1,4 @@ | ||
accessing | ||
building | ||
repositoryUrlFrame | ||
|
||
^ LayoutFrame new | ||
|
2 changes: 1 addition & 1 deletion
2
packages/AutoTDD-GUI.package/ATDDRemoteEditor.class/instance/save.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,4 +1,4 @@ | ||
accessing | ||
behavior | ||
save | ||
|
||
repositoryUrl changed: #acceptChanges. | ||
|
2 changes: 1 addition & 1 deletion
2
packages/AutoTDD-GUI.package/ATDDRemoteEditor.class/instance/targetNameFrame.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,4 +1,4 @@ | ||
accessing | ||
building | ||
targetNameFrame | ||
|
||
^ LayoutFrame new | ||
|
2 changes: 1 addition & 1 deletion
2
packages/AutoTDD-GUI.package/ATDDRemoteEditor.class/instance/tokenFrame.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,4 +1,4 @@ | ||
accessing | ||
building | ||
tokenFrame | ||
|
||
^ LayoutFrame new | ||
|