-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathmain.lua
More file actions
25 lines (16 loc) · 664 Bytes
/
main.lua
File metadata and controls
25 lines (16 loc) · 664 Bytes
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
--====================================================================--
-- Websockets UnitTest
--
-- Run Unit Tests for dmc_websockets
--
-- Sample code is MIT licensed, the same license which covers Lua itself
-- http://en.wikipedia.org/wiki/MIT_License
-- Copyright (C) 2014 David McCuskey. All Rights Reserved.
--====================================================================--
print( '\n\n##############################################\n\n' )
--====================================================================--
-- Imports
require 'tests.lunatest'
--== setup test suites and run
lunatest.suite( 'tests.dmc_websockets_spec' )
lunatest.run()