This repository has been archived on 2022-12-23. You can view files and clone it, but cannot push or open issues or pull requests.
fuck-premake-old2/tests/actions/vs2013/test_sln_header.lua

30 lines
546 B
Lua

--
-- tests/actions/vs2013/test_sln_header.lua
-- Check VS2013 modifications to the solution header markup.
-- Copyright (c) 2013 Jason Perkins and the Premake project
--
local suite = test.declare("vs2013_sln_header")
local sln2005 = premake.vstudio.sln2005
--
-- Setup
--
local sln, prj
function suite.setup()
_ACTION = "vs2013"
sln = test.createsolution()
end
function suite.setsVersionsInHeader()
sln2005.header()
test.capture [[
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2013
]]
end