-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add with_result as an alias for and_will_return
- Loading branch information
1 parent
cdee93b
commit 1f7706d
Showing
4 changed files
with
43 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
package = 'mach' | ||
version = '5.1-0' | ||
source = { | ||
url = 'https://github.com/ryanplusplus/mach.lua/archive/v5.1-0.tar.gz', | ||
dir = 'mach.lua-5.1-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', | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters