BDD framework for shell [archive]
 
 
 
Go to file
Mike Gerwitz e3ab1e400e
Added support for stderr param for expectation handlers
This is unfortunately one of the cleanest ways to implement this, since
stdout is piped to stdin of the handler; I did not want to rely on using a
file descriptor, because then you have to deal with issues of rewinding the
pointer for possible future uses, and other considerations.
2014-05-13 01:25:08 -04:00
bin Initial concept and working tests for shspec 2014-05-09 00:58:06 -04:00
src Added support for stderr param for expectation handlers 2014-05-13 01:25:08 -04:00
test Adjusted existing handlers and tests to honor shift argument 2014-05-10 00:42:58 -04:00
.gitignore Alright, let's get serious about this! 2014-05-13 01:25:02 -04:00
COPYING Alright, let's get serious about this! 2014-05-13 01:25:02 -04:00
Makefile.am Alright, let's get serious about this! 2014-05-13 01:25:02 -04:00
README.md Alright, let's get serious about this! 2014-05-13 01:25:02 -04:00
configure.ac Alright, let's get serious about this! 2014-05-13 01:25:02 -04:00

README.md

shspec

describe shspec
  it is a BDD framework for shell
    expect current-shell-support
      to output "bash"

    expect pronounciation
      to succeed
      and to output "shell spec"
  end

  it is currently under development
    expect is-stable
      to succeed
      and to output "Because of self-testing"

    expect is-comprehensive
      to fail
      and to output "You should check back later."
  end
end