Welcome to mirror list, hosted at ThFree Co, Russian Federation.

fn_getcwd_tests.cpp « tests « script « src - github.com/windirstat/premake-4.x-stable.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 94ea7ce6aaeac0efcba50e658876af93fc6b59c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/**
 * \file   fn_getcwd_tests.cpp
 * \brief  Automated test for the getcwd() function.
 * \author Copyright (c) 2007-2008 Jason Perkins and the Premake project
 */

#include "premake.h"
#include "script_tests.h"
extern "C" {
#include "base/cstr.h"
}


SUITE(script)
{
	TEST_FIXTURE(FxScript, GetCwd_Exists_OnStartup)
	{
		const char* result = script_run_string(script, 
			"return (os.getcwd ~= nil)");
		CHECK_EQUAL("true", result);
	}

	TEST_FIXTURE(FxScript, GetCwd_ReturnsCwd)
	{
		const char* result = script_run_string(script, 
			"return os.getcwd()");
		CHECK(cstr_ends_with(result, "/src"));
	}
}