mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-03-27 19:23:59 -04:00
10 lines
161 B
Ruby
10 lines
161 B
Ruby
require 'test_helper'
|
|
|
|
class HomeControllerTest < ActionController::TestCase
|
|
test "should get index" do
|
|
get :index
|
|
assert_response :success
|
|
end
|
|
|
|
end
|