Passed
Push — master ( 52f8b4...b6e971 )
by Amresh
01:13
created

test.test__function   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 1
eloc 8
dl 0
loc 11
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A TestFunctionGetFunctions.test__get_functions__7D85F3E67A() 0 5 1
1
from fastest.code_assets.function import get_functions
2
from fastest.constants import TestBodies
3
import unittest
4
5
class TestFunctionGetFunctions(unittest.TestCase):
6
    def test__get_functions__7D85F3E67A(self):        
7
        page = TestBodies.GET_FUNCTIONS_TEST_CASE_1
8
        
9
10
        self.assertEqual(get_functions(page), TestBodies.GET_FUNCTIONS_TEST_CASE_1_EXPECT)
11