Skip to content

Commit

Permalink
Revert "remove files that should not be checked in"
Browse files Browse the repository at this point in the history
This reverts commit 3e4ecdb.
  • Loading branch information
George Cook committed May 26, 2019
1 parent 3e4ecdb commit 9c2ece6
Show file tree
Hide file tree
Showing 3 changed files with 4,449 additions and 0 deletions.
17 changes: 17 additions & 0 deletions outRun/.roku-deploy-staging/source/tests/BasicTests.brs
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
'@TestSuite [BT] Basic tests

'+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
'@It tests the node context is available for a Node scope function
'+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

'@Test
function BT_NodeScope() as void
m.assertNotInvalid(m.node)
BT_doSomethingInNodeScope(true)
m.assertInvalid(m._isNodeScopeVarSet)
m.assertTrue(m.node._isNodeScopeVarSet)
end function

function BT_doSomethingInNodeScope(value)
m._isNodeScopeVarSet = value
end function
Loading

0 comments on commit 9c2ece6

Please sign in to comment.