mocker.el:一个简单的Emacs模拟框架

时间:2024-06-16 15:09:10
【文件属性】:

文件名称:mocker.el:一个简单的Emacs模拟框架

文件大小:9KB

文件格式:ZIP

更新时间:2024-06-16 15:09:10

EmacsLisp

Mocker.el是Emacs Lisp的模拟框架。 它的单一入口点mocker-let提供了一个类似let接口来定义模拟对象。 实际上, mocker-let是flet的包装,可以将其视为手动生成flet一种方式。 用法 基本用法 让我们从一个简单的例子开始: (mocker- let ((foo (x y z) ((:input '( 1 2 3 ) :output 4 ) (:input '( 4 5 6 ) :output 10 ))) (bar (x) ((:input '( 42 ) :output 4 )))) (+ (foo 1 2 3 ) (foo 4 5 6 ) (bar 42 ))) 每个模拟都是以函数样


【文件预览】:
mocker.el-master
----mocker.el(14KB)
----.github()
--------workflows()
----Keg(112B)
----README.markdown(6KB)
----test()
--------mocker-test.el(9KB)
----Makefile(168B)

网友评论