spec/ppl/application/bootstrap_spec.rb in ppl-0.2.0 vs spec/ppl/application/bootstrap_spec.rb in ppl-0.3.0

- old
+ new

@@ -26,14 +26,23 @@ @bootstrap.command_suite.should be_a(Ppl::Application::CommandSuite) end it "should contain the 'add' command" do @bootstrap.command_suite.find_command("add").should_not be nil end + it "should contain the 'birthday' command" do + @bootstrap.command_suite.find_command("birthday").should_not be nil + end + it "should contain the 'email' command" do + @bootstrap.command_suite.find_command("email").should_not be nil + end it "should contain the 'ls' command" do @bootstrap.command_suite.find_command("ls").should_not be nil end it "should contain the 'mv' command" do @bootstrap.command_suite.find_command("mv").should_not be nil + end + it "should contain the 'name' command" do + @bootstrap.command_suite.find_command("name").should_not be nil end it "should contain the 'rm' command" do @bootstrap.command_suite.find_command("rm").should_not be nil end it "should contain the 'show' command" do