helpermethod / bash-specs

A BDD testing framework for Bash inspired by Jasmine and roundup.
GNU General Public License v3.0
12 stars 4 forks source link

Add basic matchers #1

Closed helpermethod closed 9 years ago

helpermethod commented 12 years ago

Write basic matchers for all Bash types (except associative arrays)

Add matchers for strings

string_is_equal_to
string_is_greater_than
string_is_less_than
string_matches

Add matchers for integers

integer_is_equal_to
integer_is_greater_than
integer_is_greater_than_or_equal_to
integer_is_less_than
integer is_less_than_or_equal_to
integer is_between

Add matchers for arrays

array_is_equal_to
array_contains
helpermethod commented 11 years ago

Write suites for each type.