This repository has been archived on 2020-05-27. You can view files and clone it, but cannot push or open issues/pull-requests.
grindable/test/functional/cafe_controller_test.rb

19 lines
474 B
Ruby

require File.dirname(__FILE__) + '/../test_helper'
require 'cafe_controller'
# Re-raise errors caught by the controller.
class CafeController; def rescue_action(e) raise e end; end
class CafeControllerTest < Test::Unit::TestCase
def setup
@controller = CafeController.new
@request = ActionController::TestRequest.new
@response = ActionController::TestResponse.new
end
# Replace this with your real tests.
def test_truth
assert true
end
end