Skip to content

Commit

Permalink
v5.0-0 rockspec
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanplusplus committed Feb 15, 2019
1 parent 4c16f1a commit cdee93b
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions rockspecs/mach-5.0-0.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
package = 'mach'
version = '5.0-0'
source = {
url = 'https://github.com/ryanplusplus/mach.lua/archive/v5.0-0.tar.gz',
dir = 'mach.lua-5.0-0/src'
}
description = {
summary = 'Simple mocking framework for Lua inspired by CppUMock and designed for readability.',
homepage = 'https://github.com/ryanplusplus/mach.lua/',
license = 'MIT <http://opensource.org/licenses/MIT>'
}
dependencies = {
'lua >= 5.1'
}
build = {
type = 'builtin',
modules = {
['mach'] = 'mach.lua',
['mach.Expectation'] = 'mach/Expectation.lua',
['mach.ExpectedCall'] = 'mach/ExpectedCall.lua',
['mach.CompletedCall'] = 'mach/CompletedCall.lua',
['mach.unexpected_call_error'] = 'mach/unexpected_call_error.lua',
['mach.unexpected_args_error'] = 'mach/unexpected_args_error.lua',
['mach.out_of_order_call_error'] = 'mach/out_of_order_call_error.lua',
['mach.not_all_calls_occurred_error'] ='mach/not_all_calls_occurred_error.lua',
['mach.format_call_status'] = 'mach/format_call_status.lua',
['mach.format_arguments'] = 'mach/format_arguments.lua',
['mach.format_value'] = 'mach/format_value.lua',
['mach.deep_compare_matcher'] = 'mach/deep_compare_matcher.lua',
['mach.match'] = 'mach/match.lua',
['mach.any'] = 'mach/any.lua',
}
}

0 comments on commit cdee93b

Please sign in to comment.