notebook/test/controllers/siblingship_controller_test.rb
2016-04-29 14:01:35 -05:00

15 lines
254 B
Ruby

require 'test_helper'
class SiblingshipControllerTest < ActionController::TestCase
test "should get create" do
get :create
assert_response :success
end
test "should get destroy" do
get :destroy
assert_response :success
end
end