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 d4f3b39 commit ec194f6Copy full SHA for ec194f6
rockspecs/mach-git-0.rockspec
@@ -0,0 +1,23 @@
1
+package = 'mach'
2
+version = 'git-0'
3
+source = {
4
+ url = 'git://github.com/ryanplusplus/mach.lua.git'
5
+}
6
+description = {
7
+ summary = 'Simple mocking framework for Lua inspired by CppUMock and designed for readability.',
8
+ homepage = 'https://github.com/ryanplusplus/mach.lua/',
9
+ license = 'MIT <http://opensource.org/licenses/MIT>'
10
11
+dependencies = {
12
+ 'lua >= 5.2'
13
14
+build = {
15
+ type = 'builtin',
16
+ modules = {
17
+ ['mach'] = 'mach.lua',
18
+ ['mach.Expectation'] = 'mach/Expectation.lua',
19
+ ['mach.ExpectedCall'] = 'mach/ExpectedCall.lua',
20
+ ['mach.unexpected_call_error'] = 'mach/unexpected_call_error.lua',
21
+ ['mach.unexpected_args_error'] = 'mach/unexpected_args_error.lua',
22
+ }
23
0 commit comments