No Moose Change
Another test postette here in the Moos-Pen today.
To finish off the '30_where_basic.t' test case I decided to add one more test; the function from hell;(abs((People.salary + .05) * 1.5))*People.overtime+(abs(People.salary+.05) *2)*People.doubletime)I diligently set that test up and then when I ran it I got
# Expected SQL--> SELECT people.first_name, people.last_name, people.user_id FROM
people WHERE ((abs(people.salary + ?) * ?) * people.overtime) + ((abs(people.salary + ?) * ?) * people.doubletime) != ?
# Generated SQL-> SELECT people.first_name First, people.last_name Last, people.user_id "User ID" FROM
people WHERE ((abs(people.salary + ?) * ?) * people.overtime) + ((abs(people.salary + ?) * ?) * people.doubletime) != ?
the conditional part was correct but I was getting the elements left over from my last test. Opps!