BDD framework for shell [archive]
 
 
 
Go to file
Mike Gerwitz 1e8279ffc3
.sh extension for included files
Motivated by Google's shell coding standards. This makes sense for
non-executable files.
2014-06-10 22:00:18 -04:00
bin Initial concept and working tests for shspec 2014-05-09 00:58:06 -04:00
src .sh extension for included files 2014-06-10 22:00:18 -04:00
test run-spec will now set wd to spec dir 2014-06-09 22:39:30 -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 Updated README.md to reflect shell syntax in example 2014-05-13 01:27:48 -04:00
configure.ac Alright, let's get serious about this! 2014-05-13 01:25:02 -04:00

README.md

shspec

#!/bin/bash
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