test_toolbox.py 205 B

12345678
  1. import pytest
  2. from lakesuperior.toolbox import Toolbox
  3. def test_camelcase(client):
  4. c = client.get('/ldp')
  5. in_str = 'test_input_string'
  6. assert Toolbox().camelcase(in_str) == 'TestInputString'