da3mon / especial
- Source
- Commits
- Network (0)
- Issues (0)
- Downloads (0)
- Wiki (1)
- Graphs
-
Tree:
e91e73c
commit e91e73cb006ebe8facf711d54873444381c4ecf2
tree bb1b9fc8e1ec4670acf19f884496dff636587b35
parent 258742d7ca74fc12d52250fdbf351491960dea08
tree bb1b9fc8e1ec4670acf19f884496dff636587b35
parent 258742d7ca74fc12d52250fdbf351491960dea08
especial /
README.md
especial
it will be a BDD server for unit testing in erlang.
current status
especial is a WIP.
syntax
proposed syntax so far:
describe(Module, ItList).
it("does something", ExpectList).
expect(ExpectedValue) ! to(Matcher, ActualValue).
describe(Spec, self(), [
it("expects things", [
expect(4) ! to(equal, 4),
expect(fun() -> something end) ! to(be_pid)
])
]).

