Use Minitest::Test instead of ActiveModel::TestCase

This commit is contained in:
Santiago Pastorino
2014-01-09 21:52:10 -02:00
parent cec7980208
commit 1ec499bd64
19 changed files with 36 additions and 36 deletions

View File

@@ -2,7 +2,7 @@ require 'test_helper'
module ActiveModel
class Serializer
class AttributesTest < ActiveModel::TestCase
class AttributesTest < Minitest::Test
def setup
@profile = Profile.new({ name: 'Name 1', description: 'Description 1', comments: 'Comments 1' })
@profile_serializer = ProfileSerializer.new(@profile)