Project

General

Profile

Download (503 Bytes) Statistics
| Branch: | Tag: | Revision:
require 'test_helper'

class Api::V1::FactValuesControllerTest < ActionController::TestCase

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

test "should get facts for given host only" do
get :index, {:host_id => hosts(:one).to_param }
assert_response :success
fact_values = ActiveSupport::JSON.decode(@response.body)
assert !fact_values.empty?
end

end
(12-12/31)