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:
authorJason Perkins <starkos@industriousone.com>2010-08-27 18:06:00 +0400
committerJason Perkins <starkos@industriousone.com>2010-08-27 18:06:00 +0400
commit23779ac17f3f2c515b0852dc9a94c116c3681b7c (patch)
treed0ea27757f6581aef2fc9572c0af6f61fc9ce3ec /tests/base
parent02f2f80e189d8fe38e3083ac6738c33bf72e3287 (diff)
Patch 3053959: kind() crashes when called with no arguments (rjmyst3)
Diffstat (limited to 'tests/base')
-rw-r--r--tests/base/test_api.lua10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/base/test_api.lua b/tests/base/test_api.lua
index a214337..854610d 100644
--- a/tests/base/test_api.lua
+++ b/tests/base/test_api.lua
@@ -121,6 +121,16 @@
--
+-- accessor tests
+--
+
+ function suite.accessor_CanRetrieveString()
+ sln.blocks[1].kind = "ConsoleApp"
+ test.isequal("ConsoleApp", kind())
+ end
+
+
+--
-- solution() tests
--