We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d859812 commit a7fa43eCopy full SHA for a7fa43e
rockspecs/mach-1.0-1.rockspec
@@ -0,0 +1,22 @@
1
+package = 'mach'
2
+version = '1.0-1'
3
+source = {
4
+ url = 'https://github.com/ryanplusplus/mach.lua/archive/v1.0-1.tar.gz',
5
+ dir = 'mach.lua-1.0-1/src'
6
+}
7
+description = {
8
+ summary = 'Simple mocking framework for Lua inspired by CppUMock and designed for readability.',
9
+ homepage = 'https://github.com/ryanplusplus/mach.lua/',
10
+ license = 'MIT <http://opensource.org/licenses/MIT>'
11
12
+dependencies = {
13
+ 'lua >= 5.1'
14
15
+build = {
16
+ type = 'builtin',
17
+ modules = {
18
+ ['mach'] = 'mach.lua',
19
+ ['mach.expectation'] = 'mach/expectation.lua',
20
+ ['mach.expected-call'] = 'mach/expected-call.lua',
21
+ }
22
0 commit comments