Sha256: 4c41dd0501ece7c06232f920011a4eaa8b8c9b5bfd4da0fb2746a74fc65056d5

Contents?: true

Size: 579 Bytes

Versions: 3

Compression:

Stored size: 579 Bytes

Contents

#!/usr/bin/env ruic
metadata 'MetaData.xml'         # optional; also may be set via -m flag
uia 'projects/Paths/Paths.uia'  # required before other commands

show "Uh oh!", app.errors if app.errors?

main = app.main
paths = main.find _type:'Path'
assert paths.length == 5
assert paths.first == main/"Scene.Layer.Path1"
assert paths.first['width'].value == 17

assert main.find(_type:'PathAnchorPoint').length == 25

assert paths.first.anchors
assert paths.first.anchors.first == paths.first.find(_type:'PathAnchorPoint').first


show "All assertions successful"

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
RUIC-0.4.6 test/paths.ruic
RUIC-0.4.5 test/paths.ruic
RUIC-0.4.2 test/paths.ruic