about summary refs log tree commit diff stats
path: root/tests/functionaltests/test_software.h
blob: 022ce4546d70e579e832dad19ba1e2dccf8e6ab7 (plain) (blame)
1
2
3
4
5
6
7
void send_software_version_request(void **state);
void display_software_version_result(void **state);
void shows_message_when_software_version_error(void **state);
void display_software_version_result_when_from_domainpart(void **state);
void show_message_in_chat_window_when_no_resource(void **state);
void display_software_version_result_in_chat(void **state);
of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. # Embed a script which allows you to change the directory of the parent shell # after you exit ranger. Run it with the command: source ranger ranger """": if [ ! -z "$1" ]; then $@ --fail-unless-cd && if [ -z "$XDG_CONFIG_HOME" ]; then cd "$(grep \^\' ~/.config/ranger/bookmarks | cut -b3-)" else cd "$(grep \^\' "$XDG_CONFIG_HOME"/ranger/bookmarks | cut -b3-)" fi && return 0 else echo "usage: source path/to/ranger.py path/to/ranger.py" fi return 1 """ import sys # When using the --clean option, not even bytecode should be written. # Thus, we need to find out if --clean is used as soon as possible. try: argv = sys.argv[0:sys.argv.index('--')] except: argv = sys.argv sys.dont_write_bytecode = '-c' in argv or '--clean' in argv # Set the actual docstring __doc__ = """Ranger - file browser for the unix terminal""" # Start ranger import ranger sys.exit(ranger.main())