Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jecisc/phexample
Temporary fork of Moose's Phexample
https://github.com/jecisc/phexample
moose pharo phexample smalltalk
Last synced: 21 days ago
JSON representation
Temporary fork of Moose's Phexample
- Host: GitHub
- URL: https://github.com/jecisc/phexample
- Owner: jecisc
- Created: 2018-11-12T16:54:47.000Z (about 6 years ago)
- Default Branch: development
- Last Pushed: 2019-10-31T16:59:55.000Z (about 5 years ago)
- Last Synced: 2024-10-31T06:23:45.538Z (2 months ago)
- Topics: moose, pharo, phexample, smalltalk
- Language: Smalltalk
- Size: 12.7 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Phexample
Temporary fork of Moose's Phexample## Description
The new black in unit testing.
Because well designed tests expand on one another.
[How to use Phexample?](https://smalltalkthoughts.blogspot.com/2009/11/phexample-because-examples-expand-on.html)
## Installation
To install Phexample on your Pharo image you can just execute the following script:
```Smalltalk
Metacello new
githubUser: 'jecisc' project: 'Phexample' commitish: 'v1.x.x' path: 'src';
baseline: 'Phexample';
load
```To add Phexample to your baseline just add this:
```Smalltalk
spec
baseline: 'Phexample'
with: [ spec repository: 'github://jecisc/Phexample:v1.x.x/src' ]
```Note that you can replace the #v1.x.x by a branch as #master or #development or a tag as #v1.0.0, #v1.? or #v1.2.x.
## Official repositories
The official version is stored at: https://github.com/moosetechnology/Moose
The old repository comes from: http://smalltalkhub.com/#!/~Phexample/Phexample