Last active
December 17, 2015 22:39
-
-
Save shadchnev/5684064 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class AirportTest | |
def setup | |
@airport = Airport.new | |
end | |
def test_plane_can_land | |
end | |
# A plane currently in the airport can be requested to take off. | |
def test_plane_can_take_off | |
end | |
# No more planes can be added to the airport, if it's full. | |
# It is up to you how many planes can land in the airport and how that is impermented. | |
def test_no_plane_can_land_if_airport_is_full | |
end | |
# If the airport is full then no planes can land | |
def test_that_plane_can_land_after_airport_is_full_and_a_take_off_happened | |
end | |
# When we create a new plane, it should have a "flying" status, thus planes can not be created in the airport. | |
def test_plane_has_a_flying_status_after_it_is_created | |
end | |
# When we land a plane at the airport, the plane in question should have its status changed to "landed" | |
def test_plane_has_a_landed_status_after_landing | |
end | |
# When the plane takes of from the airport, the plane's status should become "flying" | |
def test_plane_has_a_flying_status_after_take_off | |
end | |
# include a weather condition using a module | |
# The weather must be random and only have two states "sunny" or "stormy". | |
# Try and take off a plane, but if the weather is stormy, the plane can not take off and must remain in the airport. | |
# This will require stubbing to stop the random return of the weather. | |
def test_that_no_plane_can_take_off_with_a_storm_brewing | |
end | |
# As with the above test, if the airport has a weather condition of stormy, | |
# the plane can not land, and must not be in the airport | |
def test_that_no_plane_can_land_when_there_is_a_storm_brewing | |
end | |
# grand final | |
# Given 6 planes, each plane must land. When the airport is full, every plane must take off again. | |
# Be careful of the weather, it could be stormy! | |
# Check when all the planes have landed that they have the right status "landed" | |
# Once all the planes are in the air again, check that they have the status of flying! | |
def test_all_planes_can_land_then_all_planes_in_airport_can_takeoff | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment