10 lines
186 B
Ruby
10 lines
186 B
Ruby
# this test controller renders the html with all the
|
|
# javascript stuff to run the specs
|
|
class TestController < ApplicationController
|
|
|
|
def index
|
|
render :layout => false
|
|
end
|
|
|
|
end
|