06856caecf
Implements simple plugin for nosetests and gives ability to write tests for MuranoPL functions and features on MuranoPL itself. Change-Id: I899d5d89f391167ff34fa35777e85125bad431bf
18 lines
273 B
YAML
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)
|