deb-murano/muranoapi/tests/language/io.murano.language.tests/ExampleTestCase.yaml
Serg Melikyan 06856caecf Add MuranoPL Testing Framework
Implements simple plugin for nosetests and gives
ability to write tests for MuranoPL functions
and features on MuranoPL itself.

Change-Id: I899d5d89f391167ff34fa35777e85125bad431bf
2014-04-03 19:12:39 +04:00

18 lines
273 B
YAML

Namespaces:
=: io.murano.language.tests
Name: ExampleTestCase
Extends: TestCase
Workflow:
testSum:
Body:
- $sum: 1 + 2
- $.assertEqual(3, $sum)
testUpper:
Body:
- $uppedValue: toUpper('test')
- $.assertEqual('TEST', $uppedValue)