# Copyright (c) 2023 by quyykk
#
# Endless Sky is free software: you can redistribute it and/or modify it under the
# terms of the GNU General Public License as published by the Free Software
# Foundation, either version 3 of the License, or (at your option) any later version.
#
# Endless Sky is distributed in the hope that it will be useful, but WITHOUT ANY
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
# PARTICULAR PURPOSE. See the GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along with
# this program. If not, see <https://www.gnu.org/licenses/>.


test "Landing in a system with multiple planets"
	status active
	description "Test if a ship can land on different planets in a single system."
	sequence
		inject "Three Earthly Barges Save"
		call "Load First Savegame"
		call "Depart"
		assert
			"flagship landed" == 0
		navigate
			"travel destination" Mars
		call "Land"
		assert
			"flagship planet: Mars" == 1
		call "Depart"
		assert
			"flagship landed" == 0
		navigate
			"travel destination" Luna
		call "Land"
		assert
			"flagship planet: Luna" == 1
		call "Depart"
		assert
			"flagship landed" == 0
		navigate
			"travel destination" Earth
		call "Land"
		assert
			"flagship planet: Earth" == 1
