1
0
Fork 0
mirror of https://github.com/drapergem/draper synced 2023-03-27 23:21:17 -04:00
draper/spec/dummy/test/functional/posts_controller_test.rb
Steve Klabnik 6b5b0a77ee Added first integration test
This test tests the following Draper features:

1) finders
2) decorates
3) using a decorated method

It also is the first test that verifies that the whole Cucumber setup
actually works properly.
2012-10-19 14:12:27 -03:00

9 lines
160 B
Ruby

require 'test_helper'
class PostsControllerTest < ActionController::TestCase
test "should get show" do
get :show
assert_response :success
end
end