walter/test/dummy/test/controllers/abraham_histories_controller_test.rb
2018-10-04 15:16:10 -04:00

12 lines
373 B
Ruby

# frozen_string_literal: true
require "test_helper"
class AbrahamHistoriesControllerTest < ActionDispatch::IntegrationTest
test "should create AbrahamHistory" do
assert_difference ["AbrahamHistory.count"] do
post abraham_histories_url, as: :json, params: { abraham_history: { action_name: "foo", controller_name: "bar", tour_name: "baz" } }
end
end
end