Title / Description
Code ```python # Feature 1 # Feature: User is able to search by first and last name with case agnostic matching # Given the user is logged in # When the user enters <search_term> # Then the system looks for the user term entered # And system converts converts string into lower case # And the system converts the list of names to lower case # And returns <results> # And a message <rsp_message> # | search_term | names | results # | rsp_message | # | Ali | ['Ali Shah','Shazaib Ali','Basit Mundia','Aliuddin'] | ['Ali Shah','Shazaib Ali'] | 'Success' | # | Ali | ['ali Shah','SHAZAIB ALI','Basit Mundia','Aliuddin'] | ['ali Shah','SHAZAIB ALI'] | 'Success' | # | Al | ['ali Shah','SHAZAIB ALI','Basit Mundia','Aliuddin'] | [] | 'No Results Found' | ```
Author
Highlight as C C++ CSS Clojure Delphi ERb Groovy (beta) HAML HTML JSON Java JavaScript PHP Plain text Python Ruby SQL XML YAML diff code