I have a Rails RESTful web service application that accepts a value from a client to increment the value in the database. The database value is an integer, but when using rspec to test the code, the value being passed in is interpreted as a string.
I'm using Rails 3.1 and Ruby 1.9.2.
Here's the rspec snippet:
...
it "should find Points and return object" do
put :update, :username => "tester", :newpoints => [10, 15, 0], :format => :xml
end
...
Here's the controller code:
...
respond_to do |format|
if points.update_attributes([xp + :newpoints[0]][sp + :newpoints[1]][cash + :newpoints[2]])
format.json { head :ok }
format.xml { head :ok }
...
xp, sp and cash are values from the database and have been validated as Fixnum datatype. The error I am getting is:
TypeError: String can't be coerced into Fixnum
How do I write my test to ensure that the parameters being passed are passed as the proper datatype?
I can include more of the code if needed. Thanks in advance!