Project

General

Profile

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

class FactsControllerTest < ActionController::TestCase

def test_index_json
get :index, {:format => "json"}, set_session_user
facts = ActiveSupport::JSON.decode(@response.body)
assert facts.is_a?(Array)
assert_response :success
end

end
(14-14/38)