-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "remove files that should not be checked in"
This reverts commit 3e4ecdb.
- Loading branch information
George Cook
committed
May 26, 2019
1 parent
3e4ecdb
commit 9c2ece6
Showing
3 changed files
with
4,449 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Oops, something went wrong.