Project

General

Profile

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

class FactValuesControllerTest < ActionController::TestCase
test "should get list" do
get :list, {}, set_session_user
assert_response :success
assert_not_nil :records
end

test "should get list_filter" do
get :list_filter, {}, set_session_user
assert_response :found
end
end
(9-9/24)