Best Python code snippet using avocado_python
test_safeloader.py
Source:test_safeloader.py  
...171    def test_tag_single(self):172        raw = ":avocado: tags=fast"173        exp = {"fast": None}174        self.assertEqual(safeloader.get_docstring_directives_tags(raw), exp)175    def test_tag_double(self):176        raw = ":avocado: tags=fast,network"177        exp = {"fast": None, "network": None}178        self.assertEqual(safeloader.get_docstring_directives_tags(raw), exp)179    def test_tag_double_with_empty(self):180        raw = ":avocado: tags=fast,,network"181        exp = {"fast": None, "network": None}182        self.assertEqual(safeloader.get_docstring_directives_tags(raw), exp)183    def test_tag_lowercase_uppercase(self):184        raw = ":avocado: tags=slow,DISK"185        exp = {"slow": None, "DISK": None}186        self.assertEqual(safeloader.get_docstring_directives_tags(raw), exp)187    def test_tag_duplicate(self):188        raw = ":avocado: tags=SLOW,disk,disk"189        exp = {"SLOW": None, "disk": None}...test_tag_creation.py
Source:test_tag_creation.py  
...25            tag_cls(str(v))26    def test_tag_float(self):27        self.run_float_tests(nbt.TagFloat, round_f32(1.23456))28        self.assertNotEqual(nbt.TagFloat(1/3).value, 1/3)29    def test_tag_double(self):30        self.run_float_tests(nbt.TagDouble, 1.23456)31    def test_tag_byte_array(self):32        a = [i for i in range(-128, 128)]33        self.assertEqual(list(nbt.TagByteArray(a)), a)34    def test_tag_int_array(self):35        a = [i * 2**24 for i in range(-128, 128)]36        self.assertEqual(list(nbt.TagIntArray(a)), a)37    def test_tag_long_array(self):38        a = [i * 2**56 for i in range(-128, 128)]39        self.assertEqual(list(nbt.TagLongArray(a)), a)40    def test_tag_string(self):41        self.assertEqual(nbt.TagString().value, '')42        s = 'Hello, tests!'43        self.assertEqual(nbt.TagString(s).value, s)...test_tag_read_ops.py
Source:test_tag_read_ops.py  
...22        self.assertIs(type(float(tag_cls(v))), float)23        self.assertEqual(float(tag_cls(v)), v)24    def test_tag_float(self):25        self.run_float_tests(nbt.TagFloat, round_f32(1.23456))26    def test_tag_double(self):27        self.run_float_tests(nbt.TagDouble, 1.23456)28    def test_tag_string(self):29        s = 'Hello, tests!'30        self.assertEqual(str(nbt.TagString(s)), s)31    def test_tag_list(self):32        a = [nbt.TagInt(1), nbt.TagInt(3), nbt.TagInt(37)]33        b = nbt.TagList(nbt.TagInt, a)34        35        self.assertEqual(len(a), len(b))36        37        for x, y in zip(iter(a), iter(b)):38            self.assertEqual(x, y, msg='Failed comparison by iteration')39        for i in range(len(a)):40            self.assertEqual(a[i], b[i], msg='Failed comparison by indexing')...Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!
