12345678910111213141516171819202122232425262728293031323334353637383940 |
- # Copyright (C) 2012-2014 Zammad Foundation, http://zammad-foundation.org/
- class TestsController < ApplicationController
- # GET /tests/core
- def core
- respond_to do |format|
- format.html # index.html.erb
- end
- end
- # GET /tests/ui
- def ui
- respond_to do |format|
- format.html # index.html.erb
- end
- end
- # GET /tests/from
- def form
- respond_to do |format|
- format.html # index.html.erb
- end
- end
- # GET /tests/table
- def table
- respond_to do |format|
- format.html # index.html.erb
- end
- end
- # GET /test/wait
- def wait
- sleep params[:sec].to_i
- result = { :success => true }
- render :json => result
- end
- end
|