Skip to content

Commit

Permalink
Test the expected size of creating all services
Browse files Browse the repository at this point in the history
  • Loading branch information
danielwellman committed Nov 17, 2013
1 parent 054cf73 commit aca8ed4
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions test/bane/command_line_configuration_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,10 @@ def test_creates_multiple_behaviors_starting_on_given_port
create_configuration_for([3000, 'CloseImmediately', 'CloseAfterPause'])
end

def test_creates_all_known_behavior_if_only_port_specified
def test_creates_all_known_behaviors_if_only_port_specified
servers = create_configuration_for([4000])
assert servers.size > 1, "Expected to create many servers, but instead got #{servers}"
assert_equal (Behaviors::EXPORTED + Services::EXPORTED).size, servers.size,
"Expected to create many servers, but instead got #{servers}"
end

def test_creates_specified_service_on_given_port
Expand Down

0 comments on commit aca8ed4

Please sign in to comment.