spec/options_spec.rb in cookbook-reader-0.1.0 vs spec/options_spec.rb in cookbook-reader-0.1.1

- old
+ new

@@ -1,9 +1,19 @@ -require "../lib/cookbook-reader/options" +require 'spec_helper' -describe CookbookReader::Options do +module CookbookReader + describe Options do - it "executes a block and returns a string" do - pending - end + it "should call the given sub command" do + pending("I hate rpsec") + end -end \ No newline at end of file + it "should display help when passed --help" do + pending("I hate rpsec") + end + + it "should display help when passed nothing" do + pending("I hate rpsec") + end + + end +end