public
Description: an attempt at BDD in erlang
Homepage:
Clone URL: git://github.com/da3mon/especial.git
name age message
file .gitignore Loading commit data...
file README.md
file Rakefile
directory src/
directory test/
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)
  ])
]).