-
Notifications
You must be signed in to change notification settings - Fork 8
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 #11 from hernanmd/master
Update for Pharo 12
- Loading branch information
Showing
14 changed files
with
153 additions
and
138 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
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 +1 @@ | ||
Package { #name : #BaselineOfMicroEd } | ||
Package { #name : 'BaselineOfMicroEd' } |
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
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
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,29 +1,30 @@ | ||
Class { | ||
#name : #MDMicroDownSyntaxTest, | ||
#superclass : #TestCase, | ||
#name : 'MDMicroDownSyntaxTest', | ||
#superclass : 'TestCase', | ||
#instVars : [ | ||
'syntax' | ||
], | ||
#category : #'MicroEd-Tests' | ||
#category : 'MicroEd-Tests', | ||
#package : 'MicroEd-Tests' | ||
} | ||
|
||
{ #category : #tests } | ||
{ #category : 'tests' } | ||
MDMicroDownSyntaxTest >> testGotExtensionWhenIsNotSpecify [ | ||
|
||
syntax := MDMicroDownSyntax new. | ||
self assert: syntax extension equals: 'mic' | ||
] | ||
|
||
{ #category : #tests } | ||
{ #category : 'tests' } | ||
MDMicroDownSyntaxTest >> testGotNameWhenIsNotSpecify [ | ||
|
||
syntax := MDMicroDownSyntax new. | ||
self assert: syntax name equals: 'MicroDown' | ||
] | ||
|
||
{ #category : #tests } | ||
{ #category : 'tests' } | ||
MDMicroDownSyntaxTest >> testGotParserWhenIsNotSpecify [ | ||
|
||
syntax := MDMicroDownSyntax new. | ||
self assert: syntax parser equals: MicroDownParser | ||
self assert: syntax parser equals: MicrodownParser | ||
] |
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 +1 @@ | ||
Package { #name : #'MicroEd-Tests' } | ||
Package { #name : 'MicroEd-Tests' } |
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
Oops, something went wrong.