How to use the cobbler.web.templatetags.site.TestVar function in cobbler

To help you get started, we’ve selected a few cobbler examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github cobbler / cobbler / cobbler / web / templatetags / site.py View on Github external
def create_var(self, value):
        return TestVar(value)
github cobbler / cobbler / cobbler / web / templatetags / site.py View on Github external
def setUp(self):
        self.true = TestVar(True)
        self.false = TestVar(False)
        self.high = TestVar(9000)
        self.low = TestVar(1)
github cobbler / cobbler / cobbler / web / templatetags / site.py View on Github external
def create_var(self, value):
        return TestVar(value)
github cobbler / cobbler / cobbler / web / templatetags / site.py View on Github external
def setUp(self):
        self.true = TestVar(True)
        self.false = TestVar(False)
        self.high = TestVar(9000)
        self.low = TestVar(1)
github cobbler / cobbler / cobbler / web / templatetags / site.py View on Github external
def test_in(self):
        list_ = TestVar([1, 2, 3])
        invalid_list = TestVar(None)
        self.assertCalc(In(self.low, list_))
        self.assertCalcFalse(In(self.low, invalid_list))
github cobbler / cobbler / cobbler / web / templatetags / site.py View on Github external
def setUp(self):
        self.true = TestVar(True)
        self.false = TestVar(False)
        self.high = TestVar(9000)
        self.low = TestVar(1)
github cobbler / cobbler / cobbler / web / templatetags / site.py View on Github external
def setUp(self):
        self.true = TestVar(True)
        self.false = TestVar(False)
        self.high = TestVar(9000)
        self.low = TestVar(1)