diff options
| author | s-ol <s-ol@users.noreply.github.com> | 2020-04-12 17:35:58 +0000 |
|---|---|---|
| committer | s-ol <s-ol@users.noreply.github.com> | 2020-04-12 17:35:58 +0000 |
| commit | d7de122623bd189e99a13869053eddf1608f57ad (patch) | |
| tree | a7ccb5dbdb521bd4031e6e1881cdde0c147aef4b /spec | |
| parent | lib/time, lib/util: doc updates (diff) | |
| download | alive-d7de122623bd189e99a13869053eddf1608f57ad.tar.gz alive-d7de122623bd189e99a13869053eddf1608f57ad.zip | |
add :metatype() fwd to Input
Diffstat (limited to 'spec')
| -rw-r--r-- | spec/core/input_spec.moon | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/spec/core/input_spec.moon b/spec/core/input_spec.moon index 4b470db..e867408 100644 --- a/spec/core/input_spec.moon +++ b/spec/core/input_spec.moon @@ -22,6 +22,9 @@ basic_tests = (stream, input) -> it 'gives access to the type string', -> assert.is.equal stream.type, input\type! + it 'gives access to the metatype string', -> + assert.is.equal stream.metatype, input\metatype! + describe 'Input.cold', -> stream = ValueStream.num 1 input = Input.cold stream |
