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

fn_include_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: 1c811322ebfd04e960a9b1393f0f90f87d4bc3b1 (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
30
31
32
33
34
35
36
/**
 * \file   fn_include_tests.cpp
 * \brief  Automated test for the include() function.
 * \author Copyright (c) 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, Include_Exists_OnStartup)
	{
		const char* result = script_run_string(script, 
			"return (include ~= nil)");
		CHECK_EQUAL("true", result);
	}

	TEST_FIXTURE(FxScript, Include_ReturnsValue_OnPremake4Found)
	{
		const char* result = script_run_string(script, 
			"return include('testing/test_files')");
		CHECK_EQUAL("true", result);
	}

	TEST_FIXTURE(FxScript, Include_SetsError_OnFileNotFound)
	{
		script_run_string(script,
			"include('testing')");
		CHECK(cstr_ends_with(error_get(), "No such file or directory"));
	}
}