Extension:Expect/zh
![]() Category:Beta status extensions/zh |
|
---|---|
![]() |
|
APICategory:API extensions/zh | |
描述 | Provides extended assertions for Scribunto. |
作者 | |
最新版本 | 0.1.0 |
MediaWiki | >= 1.33 |
否 | |
GNU通用公眾授權條款2.0或更新版本 | |
下載 | Category:Extensions in GitHub version control/zh README, LDoc |
Expect provides an extended framework for assertions.
It is based upon compute graphs that are predefined before being used for extensive checks.
Installation
Expect depends on modules from the Scribunto extension.
- 下载,并将其放置在您
extensions/
中的Expect
目录内。 - 将下列放置在您的LocalSettings.php 的底部:
wfLoadExtension( 'Expect' );
完成 – 在您的wiki上至Special:Version,以验证已成功安装。
Usage
The workflow is to define a graph, and then provide arguments to that graph. The definition is done once, but the graph can be reused several times.
-- Load the lib
local expect = require 'expect'
-- Create a few compute graphs
local expectString = expect:create():asType():toBeEqual( 'string' )
local expectNoColon = expect:create():toBeUMatch( '^[^:]*$' )
-- Create an exported hash
local p = {}
-- Add a function
function p.helloWorld( name )
-- Call the compute graphs
expectString( name )
expectNoColon( name )
-- Should be safe to do whatever now
return mw.ustring.format( 'Hi there %s!', name )
end
-- Return the exported hash
return p
For further help, see the generated LDoc documentation.
Development
For recreating the Vagrant-based development environment, see Expect: Topics/Vagrant.