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

github.com/windirstat/premake-4.x-stable.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/script/tests/fn_getcwd_tests.cpp')
-rw-r--r--src/script/tests/fn_getcwd_tests.cpp58
1 files changed, 29 insertions, 29 deletions
diff --git a/src/script/tests/fn_getcwd_tests.cpp b/src/script/tests/fn_getcwd_tests.cpp
index 4903c81..94ea7ce 100644
--- a/src/script/tests/fn_getcwd_tests.cpp
+++ b/src/script/tests/fn_getcwd_tests.cpp
@@ -1,29 +1,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"));
- }
-}
+/**
+ * \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"));
+ }
+}