walter/test/dummy/test/controllers/abraham_histories_controller_test.rb
2016-11-22 13:29:44 -05:00

11 lines
372 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