Project

General

Profile

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

class Api::V1::PtablesControllerTest < ActionController::TestCase
valid_attrs = { :name => 'ptable_test', :layout => 'd-i partman-auto/disk' }

test "should get index" do
get :index, { }
assert_response :success
assert_not_nil assigns(:ptables)
ptables = ActiveSupport::JSON.decode(@response.body)
assert !ptables.empty?
end

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

test "should create ptable" do
assert_difference('Ptable.count') do
post :create, { :ptable => valid_attrs }
end
assert_response :success
end

test "should update ptable" do
put :update, { :id => ptables(:one).to_param, :ptable => { } }
assert_response :success
end

test "should NOT destroy ptable in use" do
assert_difference('Ptable.count', -0) do
delete :destroy, { :id => ptables(:one).to_param }
end
assert_response :unprocessable_entity
end

test "should destroy ptable that is NOT in use" do
assert_difference('Ptable.count', -1) do
delete :destroy, { :id => ptables(:four).to_param }
end
assert_response :success
end
end
(21-21/31)