Passed
Pull Request — master (#18)
by Amresh
01:26
created

TestFunctionGetFunctions.test__get_functions__7D85F3E67A()   A

Complexity

Conditions 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 3
dl 0
loc 5
rs 10
c 0
b 0
f 0
cc 1
nop 1
1
from fastest.code_assets.function import get_functions
2
from fastest.constants import TestBodies
3
import unittest
4
5
6
class TestFunctionGetFunctions(unittest.TestCase):
7
    def test__get_functions__34137EFE12(self):
8
        self.assertIsInstance(get_functions(''), list)
9
        page = TestBodies.GET_FUNCTIONS_TEST_CASE_1
10
11
        self.assertEqual(get_functions(page), TestBodies.GET_FUNCTIONS_TEST_CASE_1_EXPECT)
12