Project

General

Profile

Download (1.19 KB) Statistics
| Branch: | Tag: | Revision:
require 'test_helper'

class Api::V1::ModelsControllerTest < ActionController::TestCase

valid_attrs = { :name => "new model" }

test "should get index" do
get :index, { }
assert_response :success
assert_not_nil assigns(:models)
end

test "should show model" do
get :show, { :id => models(:one).to_param }
assert_not_nil assigns(:model)
assert_response :success
show_response = ActiveSupport::JSON.decode(@response.body)
assert !show_response.empty?
end

test "should create model" do
assert_difference('Model.count', +1) do
post :create, { :model => valid_attrs }
end
assert_response :created
assert_not_nil assigns(:model)
end

test "should update model" do
name = Model.first.name
put :update, { :id => Model.first.to_param, :name => "#{name}".to_param }
assert_response :success
end

test "should destroy model" do
id = Model.first.id
assert_difference('Model.count', -1) do
delete :destroy, { :id => models(:one).to_param }
end
assert_response :success
end

test "invalid searches are handled gracefully" do
get :index, { :search => 'notarightterm = wrong' }
assert_response :bad_request
end
end
(19-19/31)