mirror of
https://github.com/ditkrg/active_model_serializers.git
synced 2026-01-22 22:06:50 +00:00
12 lines
208 B
Ruby
12 lines
208 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'test_helper'
|
|
|
|
class ActiveRecordTest < ActiveSupport::TestCase
|
|
include ActiveModel::Serializer::Lint::Tests
|
|
|
|
def setup
|
|
@resource = ARModels::Post.new
|
|
end
|
|
end
|