Sha256: 81822cb23ccb4155933f7f63af4f96fcb198eee8ef87707b1934e1e57ad59f89
Contents?: true
Size: 1.3 KB
Versions: 52
Compression:
Stored size: 1.3 KB
Contents
describe Ppl::Application::CommandSuite do before(:each) do @command_suite = Ppl::Application::CommandSuite.new @foo_command = Ppl::Application::Command.new @foo_command.name = "foo" @bar_command = Ppl::Application::Command.new @bar_command.name = "bar" @command_suite.add_command(@foo_command) @command_suite.add_command(@bar_command) end describe "#add_command" do it "should accept a command" do @command_suite.add_command(Ppl::Application::Command.new) @command_suite.count.should be 3 end end describe "#find_command" do it "should find a command matching the given name" do @command_suite.find_command("foo").should be @foo_command end it "should return nil if no commands match the given name" do @command_suite.find_command("baz").should be nil end end describe "#each" do it "should yield commands" do @command_suite .should_receive(:each) .and_yield(@foo_command) .and_yield(@bar_command) @command_suite.each do |c| end end end describe "#sort_by_name" do it "should sort the commands alphabetically by name" do @command_suite.sort_by_name @command_suite[0].name.should eq "bar" @command_suite[1].name.should eq "foo" end end end
Version data entries
52 entries across 52 versions & 1 rubygems