Browse Source

Initialize app context for Toolbox tests.

Stefano Cossu 7 năm trước cách đây
mục cha
commit
fd193dece9
1 tập tin đã thay đổi với 8 bổ sung1 xóa
  1. 8 1
      tests/test_toolbox.py

+ 8 - 1
tests/test_toolbox.py

@@ -5,7 +5,15 @@ from rdflib.term import URIRef
 
 from lakesuperior.dictionaries.namespaces import ns_collection as nsc
 
+@pytest.fixture
+def app_ctx(client):
+    '''
+    Initialize the app context.
+    '''
+    return client.head('/ldp')
 
+
+@pytest.mark.usefixtures('app_ctx')
 class TestToolbox:
     '''
     Unit tests for toolbox methods.
@@ -18,7 +26,6 @@ class TestToolbox:
     #    assert g.tbox.camelcase('_test_input_string') == '_TestInputString'
     #    assert g.tbox.camelcase('test__input__string') == 'Test_Input_String'
 
-
     def test_uuid_to_uri(self):
         assert g.tbox.uuid_to_uri('1234') == URIRef(g.webroot + '/1234')
         assert g.tbox.uuid_to_uri('') == URIRef(g.webroot)