Best Python code snippet using molecule_python
seq_enh_test.py
Source:seq_enh_test.py
...23 target1 = ['abc\ndef', 'ghi']24 assert seq_enh.split_blankline(s1) == target1252627def test_camelize():28 name1 = seq_enh.camelize('a_class_b_d')29 assert name1 == 'AClassBD', name13031 name2 = seq_enh.camelize('a_class_bd')32 assert name2 == 'AClassBd', name23334 name3 = seq_enh.camelize('a_class_b_d', upper_camel_case=False)35 assert name3 == 'aClassBD', name33637 name4 = seq_enh.camelize('a-class-b-d')38 assert name4 == 'AClassBD', name4394041def test_underscore():42 name1 = seq_enh.underscore('IOError')43 assert name1 == 'io_error', name14445 name2 = seq_enh.underscore('AClassBD', strict=True)46 assert name2 == 'a_class_b_d', name24748 name3 = seq_enh.underscore('IOError', strict=True)49 assert name3 == 'i_o_error', name35051 name4 = seq_enh.underscore('abc_def')52 assert name4 == 'abc_def', name4535455if __name__ == '__main__':56 test_split_whitespace()57 test_split_blankline()58 test_camelize()
...
test_utilities.py
Source:test_utilities.py
1from __future__ import (absolute_import, division, print_function)2from folium.utilities import camelize3def test_camelize():4 assert camelize('variable_name') == 'variableName'5 assert camelize('variableName') == 'variableName'6 assert camelize('name') == 'name'...
utils_test.py
Source:utils_test.py
...7 ("foo_bar", "fooBar"),8 ("foo_bar_baz", "fooBarBaz"),9 ],10)11def test_camelize(str, expected):...
Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!