This needs to be done for all plugins as well, but it's more complicated
there because several plugins have their own test_helper (which will
also load the core test_helper).
require_relative "../test_helper"
class TicketTest < ActiveSupport::TestCase
should 'have serialized data' do
t = Ticket.new
t.data[:test] = 'test'
assert_equal({:test => 'test'}, t.data)
end
end