Completed
Pull Request — master (#17)
by Amresh
01:22
created

Testfunctionget_functions.test__get_functions__EC05C50716()   A

Complexity

Conditions 1

Size

Total Lines 3
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 3
dl 0
loc 3
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__8897D60155(self):
8
        page = TestBodies.GET_FUNCTIONS_TEST_CASE_1
9
10
        self.assertEqual(get_functions(page), TestBodies.GET_FUNCTIONS_TEST_CASE_1_EXPECT)
11